Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.07 KB

VaultAccount.md

File metadata and controls

34 lines (25 loc) · 1.07 KB

VaultAccount

Properties

Name Type Description Notes
id str [optional]
name str [optional]
assets List[VaultAsset] [optional]
hidden_on_ui bool [optional]
customer_ref_id str [optional]
auto_fuel bool [optional]

Example

from fireblocks.models.vault_account import VaultAccount

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

# convert the object into a dict
vault_account_dict = vault_account_instance.to_dict()
# create an instance of VaultAccount from a dict
vault_account_from_dict = VaultAccount.from_dict(vault_account_dict)

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