From e0f92dd7fc5555e6a676b2b5bce8bdef222f15aa Mon Sep 17 00:00:00 2001 From: Sachin Akash Date: Tue, 26 Nov 2024 13:15:38 +0530 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Krishnananthalingam Tharmigan <63336800+TharmiganK@users.noreply.github.com> --- ballerina/http_types.bal | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ballerina/http_types.bal b/ballerina/http_types.bal index e82358098..9ba1929a0 100644 --- a/ballerina/http_types.bal +++ b/ballerina/http_types.bal @@ -105,7 +105,10 @@ public type CommonClientConfiguration record {| boolean validation = true; # Provides settings related to client socket configuration ClientSocketConfig socketConfig = {}; - # Enables or disalbles relaxed data binding on the client side. Disabled by default + # Enables or disables relaxed data binding on the client side. Disabled by default. + # When enabled, the JSON data will be projected to the Ballerina record type and + # during the projection, nil values will be considered as optional fields and + # absent fields will be considered for nilable types boolean laxDataBinding = false; |};