@@ -1107,6 +1107,7 @@ def api_v2_transaction_transaction_id_process_post(
11071107 self ,
11081108 transaction_id : Annotated [UUID , Field (description = "Transaction id" )],
11091109 transaction_process_request : TransactionProcessRequest ,
1110+ use_cache : Annotated [Optional [StrictBool ], Field (description = "Get processed values from storage in case transaction has already processed." )] = None ,
11101111 _request_timeout : Union [
11111112 None ,
11121113 Annotated [StrictFloat , Field (gt = 0 )],
@@ -1127,6 +1128,8 @@ def api_v2_transaction_transaction_id_process_post(
11271128 :type transaction_id: str
11281129 :param transaction_process_request: (required)
11291130 :type transaction_process_request: TransactionProcessRequest
1131+ :param use_cache: Get processed values from storage in case transaction has already processed.
1132+ :type use_cache: bool
11301133 :param _request_timeout: timeout setting for this request. If one
11311134 number provided, it will be total request
11321135 timeout. It can also be a pair (tuple) of
@@ -1152,6 +1155,7 @@ def api_v2_transaction_transaction_id_process_post(
11521155 _param = self ._api_v2_transaction_transaction_id_process_post_serialize (
11531156 transaction_id = transaction_id ,
11541157 transaction_process_request = transaction_process_request ,
1158+ use_cache = use_cache ,
11551159 _request_auth = _request_auth ,
11561160 _content_type = _content_type ,
11571161 _headers = _headers ,
@@ -1179,6 +1183,7 @@ def api_v2_transaction_transaction_id_process_post_with_http_info(
11791183 self ,
11801184 transaction_id : Annotated [UUID , Field (description = "Transaction id" )],
11811185 transaction_process_request : TransactionProcessRequest ,
1186+ use_cache : Annotated [Optional [StrictBool ], Field (description = "Get processed values from storage in case transaction has already processed." )] = None ,
11821187 _request_timeout : Union [
11831188 None ,
11841189 Annotated [StrictFloat , Field (gt = 0 )],
@@ -1199,6 +1204,8 @@ def api_v2_transaction_transaction_id_process_post_with_http_info(
11991204 :type transaction_id: str
12001205 :param transaction_process_request: (required)
12011206 :type transaction_process_request: TransactionProcessRequest
1207+ :param use_cache: Get processed values from storage in case transaction has already processed.
1208+ :type use_cache: bool
12021209 :param _request_timeout: timeout setting for this request. If one
12031210 number provided, it will be total request
12041211 timeout. It can also be a pair (tuple) of
@@ -1224,6 +1231,7 @@ def api_v2_transaction_transaction_id_process_post_with_http_info(
12241231 _param = self ._api_v2_transaction_transaction_id_process_post_serialize (
12251232 transaction_id = transaction_id ,
12261233 transaction_process_request = transaction_process_request ,
1234+ use_cache = use_cache ,
12271235 _request_auth = _request_auth ,
12281236 _content_type = _content_type ,
12291237 _headers = _headers ,
@@ -1251,6 +1259,7 @@ def api_v2_transaction_transaction_id_process_post_without_preload_content(
12511259 self ,
12521260 transaction_id : Annotated [UUID , Field (description = "Transaction id" )],
12531261 transaction_process_request : TransactionProcessRequest ,
1262+ use_cache : Annotated [Optional [StrictBool ], Field (description = "Get processed values from storage in case transaction has already processed." )] = None ,
12541263 _request_timeout : Union [
12551264 None ,
12561265 Annotated [StrictFloat , Field (gt = 0 )],
@@ -1271,6 +1280,8 @@ def api_v2_transaction_transaction_id_process_post_without_preload_content(
12711280 :type transaction_id: str
12721281 :param transaction_process_request: (required)
12731282 :type transaction_process_request: TransactionProcessRequest
1283+ :param use_cache: Get processed values from storage in case transaction has already processed.
1284+ :type use_cache: bool
12741285 :param _request_timeout: timeout setting for this request. If one
12751286 number provided, it will be total request
12761287 timeout. It can also be a pair (tuple) of
@@ -1296,6 +1307,7 @@ def api_v2_transaction_transaction_id_process_post_without_preload_content(
12961307 _param = self ._api_v2_transaction_transaction_id_process_post_serialize (
12971308 transaction_id = transaction_id ,
12981309 transaction_process_request = transaction_process_request ,
1310+ use_cache = use_cache ,
12991311 _request_auth = _request_auth ,
13001312 _content_type = _content_type ,
13011313 _headers = _headers ,
@@ -1318,6 +1330,7 @@ def _api_v2_transaction_transaction_id_process_post_serialize(
13181330 self ,
13191331 transaction_id ,
13201332 transaction_process_request ,
1333+ use_cache ,
13211334 _request_auth ,
13221335 _content_type ,
13231336 _headers ,
@@ -1342,6 +1355,10 @@ def _api_v2_transaction_transaction_id_process_post_serialize(
13421355 if transaction_id is not None :
13431356 _path_params ['transactionId' ] = transaction_id
13441357 # process the query parameters
1358+ if use_cache is not None :
1359+
1360+ _query_params .append (('useCache' , use_cache ))
1361+
13451362 # process the header parameters
13461363 # process the form parameters
13471364 # process the body parameter
0 commit comments