Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

ExternalAccount

Properties

Name Type Description Notes
type ExternalAccountType
sender_information ExternalAccountSenderInformation [optional]

Example

from fireblocks.models.external_account import ExternalAccount

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

# convert the object into a dict
external_account_dict = external_account_instance.to_dict()
# create an instance of ExternalAccount from a dict
external_account_from_dict = ExternalAccount.from_dict(external_account_dict)

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