Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.91 KB

File metadata and controls

41 lines (32 loc) · 1.91 KB

CreateDestinationBankAccount

Properties

Name Type Description Notes
account_alias str The alias of the bank account.
account_number str The bank account number.
swift_code str The SWIFT or BIC code of the bank.
currency str The currency of the bank account.
beneficiary_name str The name of the account holder.
beneficiary_address str The address of the account holder.
bank_name str The name of the bank.
bank_address str The address of the bank.
iban_code str The IBAN code of the bank account. [optional]
further_credit str The further credit of the bank account. [optional]
intermediary_bank_info IntermediaryBankInfo [optional]
country str Beneficiary's country, in ISO 3166-1 alpha-3 format. [optional]
city str Beneficiary's city. [optional]

Example

from cobo_waas2.models.create_destination_bank_account import CreateDestinationBankAccount

# TODO update the JSON string below
json = "{}"
# create an instance of CreateDestinationBankAccount from a JSON string
create_destination_bank_account_instance = CreateDestinationBankAccount.from_json(json)
# print the JSON string representation of the object
print(CreateDestinationBankAccount.to_json())

# convert the object into a dict
create_destination_bank_account_dict = create_destination_bank_account_instance.to_dict()
# create an instance of CreateDestinationBankAccount from a dict
create_destination_bank_account_from_dict = CreateDestinationBankAccount.from_dict(create_destination_bank_account_dict)

[Back to Model list] [Back to API list] [Back to README]