| 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] | |
| tags | List[Tag] | List of tags attached to the vault account | [optional] |
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)