@@ -244,7 +244,10 @@ def simulate_authorization(
244244 descriptor : str ,
245245 pan : str ,
246246 mcc : str | Omit = omit ,
247+ merchant_acceptor_city : str | Omit = omit ,
248+ merchant_acceptor_country : str | Omit = omit ,
247249 merchant_acceptor_id : str | Omit = omit ,
250+ merchant_acceptor_state : str | Omit = omit ,
248251 merchant_amount : int | Omit = omit ,
249252 merchant_currency : str | Omit = omit ,
250253 partial_approval_capable : bool | Omit = omit ,
@@ -289,8 +292,14 @@ def simulate_authorization(
289292 listed in ISO 18245. Supported merchant category codes can be found
290293 [here](https://docs.lithic.com/docs/transactions#merchant-category-codes-mccs).
291294
295+ merchant_acceptor_city: Merchant acceptor city
296+
297+ merchant_acceptor_country: Merchant acceptor country code (ISO 3166-1 alpha-3)
298+
292299 merchant_acceptor_id: Unique identifier to identify the payment card acceptor.
293300
301+ merchant_acceptor_state: Merchant acceptor state/province (ISO 3166-2 subdivision code)
302+
294303 merchant_amount: Amount of the transaction to be simulated in currency specified in
295304 merchant_currency, including any acquirer fees.
296305
@@ -336,7 +345,10 @@ def simulate_authorization(
336345 "descriptor" : descriptor ,
337346 "pan" : pan ,
338347 "mcc" : mcc ,
348+ "merchant_acceptor_city" : merchant_acceptor_city ,
349+ "merchant_acceptor_country" : merchant_acceptor_country ,
339350 "merchant_acceptor_id" : merchant_acceptor_id ,
351+ "merchant_acceptor_state" : merchant_acceptor_state ,
340352 "merchant_amount" : merchant_amount ,
341353 "merchant_currency" : merchant_currency ,
342354 "partial_approval_capable" : partial_approval_capable ,
@@ -462,7 +474,10 @@ def simulate_credit_authorization(
462474 descriptor : str ,
463475 pan : str ,
464476 mcc : str | Omit = omit ,
477+ merchant_acceptor_city : str | Omit = omit ,
478+ merchant_acceptor_country : str | Omit = omit ,
465479 merchant_acceptor_id : str | Omit = omit ,
480+ merchant_acceptor_state : str | Omit = omit ,
466481 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
467482 # The extra values given here take precedence over values defined on the client or passed to this method.
468483 extra_headers : Headers | None = None ,
@@ -488,8 +503,14 @@ def simulate_credit_authorization(
488503 listed in ISO 18245. Supported merchant category codes can be found
489504 [here](https://docs.lithic.com/docs/transactions#merchant-category-codes-mccs).
490505
506+ merchant_acceptor_city: Merchant acceptor city
507+
508+ merchant_acceptor_country: Merchant acceptor country code (ISO 3166-1 alpha-3)
509+
491510 merchant_acceptor_id: Unique identifier to identify the payment card acceptor.
492511
512+ merchant_acceptor_state: Merchant acceptor state/province (ISO 3166-2 subdivision code)
513+
493514 extra_headers: Send extra headers
494515
495516 extra_query: Add additional query parameters to the request
@@ -506,7 +527,10 @@ def simulate_credit_authorization(
506527 "descriptor" : descriptor ,
507528 "pan" : pan ,
508529 "mcc" : mcc ,
530+ "merchant_acceptor_city" : merchant_acceptor_city ,
531+ "merchant_acceptor_country" : merchant_acceptor_country ,
509532 "merchant_acceptor_id" : merchant_acceptor_id ,
533+ "merchant_acceptor_state" : merchant_acceptor_state ,
510534 },
511535 transaction_simulate_credit_authorization_params .TransactionSimulateCreditAuthorizationParams ,
512536 ),
@@ -523,7 +547,10 @@ def simulate_credit_authorization_advice(
523547 descriptor : str ,
524548 pan : str ,
525549 mcc : str | Omit = omit ,
550+ merchant_acceptor_city : str | Omit = omit ,
551+ merchant_acceptor_country : str | Omit = omit ,
526552 merchant_acceptor_id : str | Omit = omit ,
553+ merchant_acceptor_state : str | Omit = omit ,
527554 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
528555 # The extra values given here take precedence over values defined on the client or passed to this method.
529556 extra_headers : Headers | None = None ,
@@ -549,8 +576,14 @@ def simulate_credit_authorization_advice(
549576 listed in ISO 18245. Supported merchant category codes can be found
550577 [here](https://docs.lithic.com/docs/transactions#merchant-category-codes-mccs).
551578
579+ merchant_acceptor_city: Merchant acceptor city
580+
581+ merchant_acceptor_country: Merchant acceptor country code (ISO 3166-1 alpha-3)
582+
552583 merchant_acceptor_id: Unique identifier to identify the payment card acceptor.
553584
585+ merchant_acceptor_state: Merchant acceptor state/province (ISO 3166-2 subdivision code)
586+
554587 extra_headers: Send extra headers
555588
556589 extra_query: Add additional query parameters to the request
@@ -567,7 +600,10 @@ def simulate_credit_authorization_advice(
567600 "descriptor" : descriptor ,
568601 "pan" : pan ,
569602 "mcc" : mcc ,
603+ "merchant_acceptor_city" : merchant_acceptor_city ,
604+ "merchant_acceptor_country" : merchant_acceptor_country ,
570605 "merchant_acceptor_id" : merchant_acceptor_id ,
606+ "merchant_acceptor_state" : merchant_acceptor_state ,
571607 },
572608 transaction_simulate_credit_authorization_advice_params .TransactionSimulateCreditAuthorizationAdviceParams ,
573609 ),
@@ -909,7 +945,10 @@ async def simulate_authorization(
909945 descriptor : str ,
910946 pan : str ,
911947 mcc : str | Omit = omit ,
948+ merchant_acceptor_city : str | Omit = omit ,
949+ merchant_acceptor_country : str | Omit = omit ,
912950 merchant_acceptor_id : str | Omit = omit ,
951+ merchant_acceptor_state : str | Omit = omit ,
913952 merchant_amount : int | Omit = omit ,
914953 merchant_currency : str | Omit = omit ,
915954 partial_approval_capable : bool | Omit = omit ,
@@ -954,8 +993,14 @@ async def simulate_authorization(
954993 listed in ISO 18245. Supported merchant category codes can be found
955994 [here](https://docs.lithic.com/docs/transactions#merchant-category-codes-mccs).
956995
996+ merchant_acceptor_city: Merchant acceptor city
997+
998+ merchant_acceptor_country: Merchant acceptor country code (ISO 3166-1 alpha-3)
999+
9571000 merchant_acceptor_id: Unique identifier to identify the payment card acceptor.
9581001
1002+ merchant_acceptor_state: Merchant acceptor state/province (ISO 3166-2 subdivision code)
1003+
9591004 merchant_amount: Amount of the transaction to be simulated in currency specified in
9601005 merchant_currency, including any acquirer fees.
9611006
@@ -1001,7 +1046,10 @@ async def simulate_authorization(
10011046 "descriptor" : descriptor ,
10021047 "pan" : pan ,
10031048 "mcc" : mcc ,
1049+ "merchant_acceptor_city" : merchant_acceptor_city ,
1050+ "merchant_acceptor_country" : merchant_acceptor_country ,
10041051 "merchant_acceptor_id" : merchant_acceptor_id ,
1052+ "merchant_acceptor_state" : merchant_acceptor_state ,
10051053 "merchant_amount" : merchant_amount ,
10061054 "merchant_currency" : merchant_currency ,
10071055 "partial_approval_capable" : partial_approval_capable ,
@@ -1127,7 +1175,10 @@ async def simulate_credit_authorization(
11271175 descriptor : str ,
11281176 pan : str ,
11291177 mcc : str | Omit = omit ,
1178+ merchant_acceptor_city : str | Omit = omit ,
1179+ merchant_acceptor_country : str | Omit = omit ,
11301180 merchant_acceptor_id : str | Omit = omit ,
1181+ merchant_acceptor_state : str | Omit = omit ,
11311182 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
11321183 # The extra values given here take precedence over values defined on the client or passed to this method.
11331184 extra_headers : Headers | None = None ,
@@ -1153,8 +1204,14 @@ async def simulate_credit_authorization(
11531204 listed in ISO 18245. Supported merchant category codes can be found
11541205 [here](https://docs.lithic.com/docs/transactions#merchant-category-codes-mccs).
11551206
1207+ merchant_acceptor_city: Merchant acceptor city
1208+
1209+ merchant_acceptor_country: Merchant acceptor country code (ISO 3166-1 alpha-3)
1210+
11561211 merchant_acceptor_id: Unique identifier to identify the payment card acceptor.
11571212
1213+ merchant_acceptor_state: Merchant acceptor state/province (ISO 3166-2 subdivision code)
1214+
11581215 extra_headers: Send extra headers
11591216
11601217 extra_query: Add additional query parameters to the request
@@ -1171,7 +1228,10 @@ async def simulate_credit_authorization(
11711228 "descriptor" : descriptor ,
11721229 "pan" : pan ,
11731230 "mcc" : mcc ,
1231+ "merchant_acceptor_city" : merchant_acceptor_city ,
1232+ "merchant_acceptor_country" : merchant_acceptor_country ,
11741233 "merchant_acceptor_id" : merchant_acceptor_id ,
1234+ "merchant_acceptor_state" : merchant_acceptor_state ,
11751235 },
11761236 transaction_simulate_credit_authorization_params .TransactionSimulateCreditAuthorizationParams ,
11771237 ),
@@ -1188,7 +1248,10 @@ async def simulate_credit_authorization_advice(
11881248 descriptor : str ,
11891249 pan : str ,
11901250 mcc : str | Omit = omit ,
1251+ merchant_acceptor_city : str | Omit = omit ,
1252+ merchant_acceptor_country : str | Omit = omit ,
11911253 merchant_acceptor_id : str | Omit = omit ,
1254+ merchant_acceptor_state : str | Omit = omit ,
11921255 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
11931256 # The extra values given here take precedence over values defined on the client or passed to this method.
11941257 extra_headers : Headers | None = None ,
@@ -1214,8 +1277,14 @@ async def simulate_credit_authorization_advice(
12141277 listed in ISO 18245. Supported merchant category codes can be found
12151278 [here](https://docs.lithic.com/docs/transactions#merchant-category-codes-mccs).
12161279
1280+ merchant_acceptor_city: Merchant acceptor city
1281+
1282+ merchant_acceptor_country: Merchant acceptor country code (ISO 3166-1 alpha-3)
1283+
12171284 merchant_acceptor_id: Unique identifier to identify the payment card acceptor.
12181285
1286+ merchant_acceptor_state: Merchant acceptor state/province (ISO 3166-2 subdivision code)
1287+
12191288 extra_headers: Send extra headers
12201289
12211290 extra_query: Add additional query parameters to the request
@@ -1232,7 +1301,10 @@ async def simulate_credit_authorization_advice(
12321301 "descriptor" : descriptor ,
12331302 "pan" : pan ,
12341303 "mcc" : mcc ,
1304+ "merchant_acceptor_city" : merchant_acceptor_city ,
1305+ "merchant_acceptor_country" : merchant_acceptor_country ,
12351306 "merchant_acceptor_id" : merchant_acceptor_id ,
1307+ "merchant_acceptor_state" : merchant_acceptor_state ,
12361308 },
12371309 transaction_simulate_credit_authorization_advice_params .TransactionSimulateCreditAuthorizationAdviceParams ,
12381310 ),
0 commit comments