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
"""Allows creating a client with a customized `AbtestingConfig` and `Transporter`. If `transporter` is not provided, the default one will be initialized from the given `config`.
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
174
175
:return: Returns the deserialized response in a 'ABTestResponse' result object.
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
252
252
:return: Returns the deserialized response in a 'object' result object.
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
326
327
:return: Returns the deserialized response in a 'object' result object.
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
417
417
:return: Returns the deserialized response in a 'object' result object.
418
418
"""
419
-
return (
420
-
awaitself.custom_post_with_http_info(
421
-
path, parameters, body, request_options
422
-
)
423
-
).deserialize(object)
419
+
resp=awaitself.custom_post_with_http_info(
420
+
path, parameters, body, request_options
421
+
)
422
+
returnresp.deserialize(object, resp.raw_data)
424
423
425
424
asyncdefcustom_put_with_http_info(
426
425
self,
@@ -509,11 +508,10 @@ async def custom_put(
509
508
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
510
509
:return: Returns the deserialized response in a 'object' result object.
511
510
"""
512
-
return (
513
-
awaitself.custom_put_with_http_info(
514
-
path, parameters, body, request_options
515
-
)
516
-
).deserialize(object)
511
+
resp=awaitself.custom_put_with_http_info(
512
+
path, parameters, body, request_options
513
+
)
514
+
returnresp.deserialize(object, resp.raw_data)
517
515
518
516
asyncdefdelete_ab_test_with_http_info(
519
517
self,
@@ -562,9 +560,8 @@ async def delete_ab_test(
562
560
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
563
561
:return: Returns the deserialized response in a 'ABTestResponse' result object.
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
612
609
:return: Returns the deserialized response in a 'ABTest' result object.
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
718
714
:return: Returns the deserialized response in a 'ListABTestsResponse' result object.
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
776
771
:return: Returns the deserialized response in a 'ScheduleABTestResponse' result object.
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
827
821
:return: Returns the deserialized response in a 'ABTestResponse' result object.
"""Allows creating a client with a customized `AbtestingConfig` and `TransporterSync`. If `transporter` is not provided, the default one will be initialized from the given `config`.
880
874
881
875
Args:
@@ -966,9 +960,8 @@ def add_ab_tests(
966
960
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
967
961
:return: Returns the deserialized response in a 'ABTestResponse' result object.
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
1043
1036
:return: Returns the deserialized response in a 'object' result object.
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
1117
1109
:return: Returns the deserialized response in a 'object' result object.
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
1208
1199
:return: Returns the deserialized response in a 'object' result object.
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
1299
1289
:return: Returns the deserialized response in a 'object' result object.
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
1350
1339
:return: Returns the deserialized response in a 'ABTestResponse' result object.
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
1399
1387
:return: Returns the deserialized response in a 'ABTest' result object.
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
1505
1492
:return: Returns the deserialized response in a 'ListABTestsResponse' result object.
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
1563
1549
:return: Returns the deserialized response in a 'ScheduleABTestResponse' result object.
:param request_options: The request options to send along with the query, they will be merged with the transporter base parameters (headers, query params, timeouts, etc.). (optional)
1614
1599
:return: Returns the deserialized response in a 'ABTestResponse' result object.
0 commit comments