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
Status of the job. Possible values - Success, In Progress, Failed, Pending Approval, Cancelled
vault_accounts
Dict[str, Dict[str, str]]
Mapping between VaultAccountId to a mapping of asset to address
[optional]
tag_ids
List[str]
List of tag IDs successfully attached to each of the created vault accounts
[optional]
error_message
str
[optional]
approval_request_id
str
Approval request ID if the job has protected tags to attach to the vault accounts
[optional]
Example
fromfireblocks.models.create_multiple_vault_accounts_job_statusimportCreateMultipleVaultAccountsJobStatus# TODO update the JSON string belowjson="{}"# create an instance of CreateMultipleVaultAccountsJobStatus from a JSON stringcreate_multiple_vault_accounts_job_status_instance=CreateMultipleVaultAccountsJobStatus.from_json(json)
# print the JSON string representation of the objectprint(CreateMultipleVaultAccountsJobStatus.to_json())
# convert the object into a dictcreate_multiple_vault_accounts_job_status_dict=create_multiple_vault_accounts_job_status_instance.to_dict()
# create an instance of CreateMultipleVaultAccountsJobStatus from a dictcreate_multiple_vault_accounts_job_status_from_dict=CreateMultipleVaultAccountsJobStatus.from_dict(create_multiple_vault_accounts_job_status_dict)