Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.12 KB

File metadata and controls

33 lines (24 loc) · 1.12 KB

AccountIdentifier

Account identifier with type, ID, subtype, and address

Properties

Name Type Description Notes
type AccountType2
id str Account ID [optional]
sub_type str Account subtype [optional]
address str Account address [optional]

Example

from fireblocks.models.account_identifier import AccountIdentifier

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

# convert the object into a dict
account_identifier_dict = account_identifier_instance.to_dict()
# create an instance of AccountIdentifier from a dict
account_identifier_from_dict = AccountIdentifier.from_dict(account_identifier_dict)

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