@@ -595,6 +595,7 @@ def identify_from_transaction(
595595 | Omit = omit ,
596596 max_speed : bool | Omit = omit ,
597597 mcc : str | Omit = omit ,
598+ phone : float | Omit = omit ,
598599 timeout_ms : int | Omit = omit ,
599600 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
600601 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -624,6 +625,8 @@ def identify_from_transaction(
624625 mcc: Optional Merchant Category Code (MCC) to help identify the business
625626 category/industry.
626627
628+ phone: Optional phone number from the transaction to help verify brand match.
629+
627630 timeout_ms: Optional timeout in milliseconds for the request. If the request takes longer
628631 than this value, it will be aborted with a 408 status code. Maximum allowed
629632 value is 300000ms (5 minutes).
@@ -651,6 +654,7 @@ def identify_from_transaction(
651654 "force_language" : force_language ,
652655 "max_speed" : max_speed ,
653656 "mcc" : mcc ,
657+ "phone" : phone ,
654658 "timeout_ms" : timeout_ms ,
655659 },
656660 brand_identify_from_transaction_params .BrandIdentifyFromTransactionParams ,
@@ -2018,6 +2022,7 @@ async def identify_from_transaction(
20182022 | Omit = omit ,
20192023 max_speed : bool | Omit = omit ,
20202024 mcc : str | Omit = omit ,
2025+ phone : float | Omit = omit ,
20212026 timeout_ms : int | Omit = omit ,
20222027 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
20232028 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -2047,6 +2052,8 @@ async def identify_from_transaction(
20472052 mcc: Optional Merchant Category Code (MCC) to help identify the business
20482053 category/industry.
20492054
2055+ phone: Optional phone number from the transaction to help verify brand match.
2056+
20502057 timeout_ms: Optional timeout in milliseconds for the request. If the request takes longer
20512058 than this value, it will be aborted with a 408 status code. Maximum allowed
20522059 value is 300000ms (5 minutes).
@@ -2074,6 +2081,7 @@ async def identify_from_transaction(
20742081 "force_language" : force_language ,
20752082 "max_speed" : max_speed ,
20762083 "mcc" : mcc ,
2084+ "phone" : phone ,
20772085 "timeout_ms" : timeout_ms ,
20782086 },
20792087 brand_identify_from_transaction_params .BrandIdentifyFromTransactionParams ,
0 commit comments