Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 902 Bytes

File metadata and controls

30 lines (21 loc) · 902 Bytes

AccountBase

Properties

Name Type Description Notes
id str The ID of the account
name str The name of the account

Example

from fireblocks.models.account_base import AccountBase

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

# convert the object into a dict
account_base_dict = account_base_instance.to_dict()
# create an instance of AccountBase from a dict
account_base_from_dict = AccountBase.from_dict(account_base_dict)

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