1212 RecipientRelationship ,
1313 SpeiProtocol ,
1414)
15+ from ..receivers .receivers import BusinessIndustry
1516
1617ArgentinaTransfers = Literal ["CVU" , "CBU" , "ALIAS" ]
1718AchCopDocument = Literal ["CC" , "CE" , "NIT" , "PASS" , "PEP" ]
2728PixSafeType = Literal ["pix_safe" ]
2829TedType = Literal ["ted" ]
2930
31+ SwiftPaymentCode = Literal ["hk_swift_charitabledonation" , "hk_swift_goods" , "hk_swift_personal" , "hk_swift_services" ]
32+
3033
3134class OfframpWallet (TypedDict ):
3235 address : str
@@ -83,6 +86,7 @@ class BankAccount(TypedDict):
8386 swift_intermediary_bank_account_number_iban : Optional [str ]
8487 swift_intermediary_bank_name : Optional [str ]
8588 swift_intermediary_bank_country : Optional [Country ]
89+ swift_ifsc_branch_code : Optional [str ]
8690 tron_wallet_hash : Optional [str ]
8791 offramp_wallets : Optional [List [OfframpWallet ]]
8892 created_at : str
@@ -208,7 +212,7 @@ class CreateAchInput(_CreateAchInputRequired, total=False):
208212 country : Country
209213 postal_code : str
210214 address_line_2 : Optional [str ]
211- business_industry : Optional [str ]
215+ business_industry : Optional [BusinessIndustry ]
212216 phone_number : Optional [str ]
213217 tax_id : Optional [str ]
214218 date_of_birth : Optional [str ]
@@ -256,7 +260,7 @@ class CreateWireInput(_CreateWireInputRequired, total=False):
256260 state_province_region : str
257261 country : Country
258262 postal_code : str
259- business_industry : Optional [str ]
263+ business_industry : Optional [BusinessIndustry ]
260264 phone_number : Optional [str ]
261265 tax_id : Optional [str ]
262266 date_of_birth : Optional [str ]
@@ -306,8 +310,9 @@ class CreateInternationalSwiftInput(_CreateInternationalSwiftInputRequired, tota
306310 swift_intermediary_bank_country : Optional [Country ]
307311 swift_intermediary_bank_name : Optional [str ]
308312 swift_intermediary_bank_swift_code_bic : Optional [str ]
309- swift_payment_code : Optional [str ]
310- business_industry : Optional [str ]
313+ swift_ifsc_branch_code : Optional [str ]
314+ swift_payment_code : Optional [SwiftPaymentCode ]
315+ business_industry : Optional [BusinessIndustry ]
311316 phone_number : Optional [str ]
312317 tax_id : Optional [str ]
313318 date_of_birth : Optional [str ]
@@ -344,6 +349,7 @@ class CreateInternationalSwiftResponse(TypedDict):
344349 swift_intermediary_bank_account_number_iban : Optional [str ]
345350 swift_intermediary_bank_name : Optional [str ]
346351 swift_intermediary_bank_country : Optional [Country ]
352+ swift_ifsc_branch_code : Optional [str ]
347353 created_at : str
348354
349355
@@ -364,7 +370,7 @@ class CreateRtpInput(_CreateRtpInputRequired, total=False):
364370 state_province_region : str
365371 country : Country
366372 postal_code : str
367- business_industry : Optional [str ]
373+ business_industry : Optional [BusinessIndustry ]
368374 phone_number : Optional [str ]
369375 tax_id : Optional [str ]
370376 date_of_birth : Optional [str ]
0 commit comments