Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.98 KB

AddAssetToExternalWalletRequestOneOf1AdditionalInfo.md

File metadata and controls

44 lines (35 loc) · 1.98 KB

AddAssetToExternalWalletRequestOneOf1AdditionalInfo

Properties

Name Type Description Notes
account_holder_given_name str
account_holder_surname str [optional]
account_holder_city str
account_holder_country str
account_holder_address1 str
account_holder_address2 str [optional]
account_holder_district str [optional]
account_holder_postal_code str
iban str
iban_city str
iban_country str
aba_routing_number str
aba_account_number str
aba_country str
spei_clabe str
spei_name str [optional]

Example

from fireblocks.models.add_asset_to_external_wallet_request_one_of1_additional_info import AddAssetToExternalWalletRequestOneOf1AdditionalInfo

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

# convert the object into a dict
add_asset_to_external_wallet_request_one_of1_additional_info_dict = add_asset_to_external_wallet_request_one_of1_additional_info_instance.to_dict()
# create an instance of AddAssetToExternalWalletRequestOneOf1AdditionalInfo from a dict
add_asset_to_external_wallet_request_one_of1_additional_info_from_dict = AddAssetToExternalWalletRequestOneOf1AdditionalInfo.from_dict(add_asset_to_external_wallet_request_one_of1_additional_info_dict)

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