| Name | Type | Description | Notes |
|---|---|---|---|
| type | ExternalAccountType | ||
| sender_information | ExternalAccountSenderInformation | [optional] |
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)