You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Beneficiary's country, in ISO 3166-1 alpha-3 format.
[optional]
city
str
Beneficiary's city.
[optional]
Example
fromcobo_waas2.models.create_destination_bank_accountimportCreateDestinationBankAccount# TODO update the JSON string belowjson="{}"# create an instance of CreateDestinationBankAccount from a JSON stringcreate_destination_bank_account_instance=CreateDestinationBankAccount.from_json(json)
# print the JSON string representation of the objectprint(CreateDestinationBankAccount.to_json())
# convert the object into a dictcreate_destination_bank_account_dict=create_destination_bank_account_instance.to_dict()
# create an instance of CreateDestinationBankAccount from a dictcreate_destination_bank_account_from_dict=CreateDestinationBankAccount.from_dict(create_destination_bank_account_dict)