| Name | Type | Description | Notes |
|---|---|---|---|
| type | ExternalAccountType | ||
| account_id | str | ||
| sender_information | ExternalAccountSenderInformation | [optional] |
from fireblocks.models.settlement_source_account import SettlementSourceAccount
# TODO update the JSON string below
json = "{}"
# create an instance of SettlementSourceAccount from a JSON string
settlement_source_account_instance = SettlementSourceAccount.from_json(json)
# print the JSON string representation of the object
print(SettlementSourceAccount.to_json())
# convert the object into a dict
settlement_source_account_dict = settlement_source_account_instance.to_dict()
# create an instance of SettlementSourceAccount from a dict
settlement_source_account_from_dict = SettlementSourceAccount.from_dict(settlement_source_account_dict)