You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Optional - if true, the created account and all related transactions will not be shown on Fireblocks console
[optional]
customer_ref_id
str
Optional - Sets a customer reference ID
[optional]
auto_fuel
bool
Optional - Sets the autoFuel property of the vault account
[optional]
vault_type
str
Type of vault account. The default type will be set to MPC.<br/> If the workspace does not support the selected type, it will return an error.
[optional] [default to 'MPC']
auto_assign
bool
Applicable only when the vault account type is KEY_LINK. For MPC, this parameter will be ignored.<br/> If set to true and there are available keys, random keys will be assigned to the newly created vault account.<br/> If set to true and there are no available keys to be assigned, it will return an error.<br/> If set to false, the vault account will be created without any keys.
[optional] [default to False]
Example
fromfireblocks.models.create_vault_account_requestimportCreateVaultAccountRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateVaultAccountRequest from a JSON stringcreate_vault_account_request_instance=CreateVaultAccountRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateVaultAccountRequest.to_json())
# convert the object into a dictcreate_vault_account_request_dict=create_vault_account_request_instance.to_dict()
# create an instance of CreateVaultAccountRequest from a dictcreate_vault_account_request_from_dict=CreateVaultAccountRequest.from_dict(create_vault_account_request_dict)