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
Names to assign to vault accounts. if vaultAccountNamesStartingIndex or prefix is used it'll fail
[optional]
vault_account_names_starting_index
int
Copy vault accounts names starting from this index. If names array is used it'll fail
[optional]
prefix
str
When copying from existing vault accounts (vaultAccountNamesStartingIndex) then adding a prefix to the names. If names array is used it'll fail
[optional]
Example
fromfireblocks.models.create_multiple_accounts_requestimportCreateMultipleAccountsRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateMultipleAccountsRequest from a JSON stringcreate_multiple_accounts_request_instance=CreateMultipleAccountsRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateMultipleAccountsRequest.to_json())
# convert the object into a dictcreate_multiple_accounts_request_dict=create_multiple_accounts_request_instance.to_dict()
# create an instance of CreateMultipleAccountsRequest from a dictcreate_multiple_accounts_request_from_dict=CreateMultipleAccountsRequest.from_dict(create_multiple_accounts_request_dict)