Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 2.01 KB

CreateVaultAccountRequest.md

File metadata and controls

34 lines (25 loc) · 2.01 KB

CreateVaultAccountRequest

Properties

Name Type Description Notes
name str Account Name [optional]
hidden_on_ui bool 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

from fireblocks.models.create_vault_account_request import CreateVaultAccountRequest

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

# convert the object into a dict
create_vault_account_request_dict = create_vault_account_request_instance.to_dict()
# create an instance of CreateVaultAccountRequest from a dict
create_vault_account_request_from_dict = CreateVaultAccountRequest.from_dict(create_vault_account_request_dict)

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