You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -436,15 +436,17 @@ The SDK is implemented so that when one of its API method is invoked, it filters
436
436
437
437
A new ApiClient property (accessed using getUseLegacyParameterFilter and setUseLegacyParameterFilter) is introduced to control the method used to filter out such parameters.
438
438
439
-
When UseLegacyParameterFilter is true, the SDK will use the legacy filter method.
439
+
When UseLegacyParameterFilter is true, the SDK will use the legacy filter method.
440
+
When UseLegacyParameterFilter is false, the SDK will use the modern and accurate filter method.
440
441
441
-
*The UseLegacyParameterFilter default value is currently equal to true.* You will need to change the UseLegacyParameterFilter value so that the SDK uses modern filter method.
442
-
This choice of default value has been made to facilitate the transition from legacy to modern and accurate parameter filtering, without running the risk to affect existing applications with a change of behavior.
442
+
*The UseLegacyParameterFilter default value is now equal to false.* If you want to preserve the legacy filter method, you will need to change the UseLegacyParameterFilter value so that the SDK uses the legacy filter method.
443
443
444
444
```javascript
445
445
constclient=platformClient.ApiClient.instance;
446
-
// To use modern and accurate parameter filtering, set UseLegacyParameterFilter to false
447
-
client.setUseLegacyParameterFilter(false);
446
+
// By default, the SDK uses the modern and accurate parameter filtering (UseLegacyParameterFilter is set to false by default)
447
+
// client.setUseLegacyParameterFilter(false);
448
+
// To continue using the legacy parameter filtering, set UseLegacyParameterFilter to true
@@ -436,15 +436,17 @@ The SDK is implemented so that when one of its API method is invoked, it filters
436
436
437
437
A new ApiClient property (accessed using getUseLegacyParameterFilter and setUseLegacyParameterFilter) is introduced to control the method used to filter out such parameters.
438
438
439
-
When UseLegacyParameterFilter is true, the SDK will use the legacy filter method.
439
+
When UseLegacyParameterFilter is true, the SDK will use the legacy filter method.
440
+
When UseLegacyParameterFilter is false, the SDK will use the modern and accurate filter method.
440
441
441
-
*The UseLegacyParameterFilter default value is currently equal to true.* You will need to change the UseLegacyParameterFilter value so that the SDK uses modern filter method.
442
-
This choice of default value has been made to facilitate the transition from legacy to modern and accurate parameter filtering, without running the risk to affect existing applications with a change of behavior.
442
+
*The UseLegacyParameterFilter default value is now equal to false.* If you want to preserve the legacy filter method, you will need to change the UseLegacyParameterFilter value so that the SDK uses the legacy filter method.
443
443
444
444
```javascript
445
445
constclient=platformClient.ApiClient.instance;
446
-
// To use modern and accurate parameter filtering, set UseLegacyParameterFilter to false
447
-
client.setUseLegacyParameterFilter(false);
446
+
// By default, the SDK uses the modern and accurate parameter filtering (UseLegacyParameterFilter is set to false by default)
447
+
// client.setUseLegacyParameterFilter(false);
448
+
// To continue using the legacy parameter filtering, set UseLegacyParameterFilter to true
0 commit comments