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
Existing Vault account ID to add deposit addresses to
asset_id
str
asset ID
count
int
Count of deposit addresses to issue
descriptions
List[str]
Desctiptions of the newly created addresses
[optional]
vault_account_to_copy_desc_from
int
Existing Vault Account ID to copy deposit addresses descriptions from in case no descriptions were provided
[optional]
vault_account_to_copy_desc_from_index
int
Existing length within the vault account to copy deposit addresses descriptions from
[optional]
Example
fromfireblocks.models.create_multiple_deposit_addresses_requestimportCreateMultipleDepositAddressesRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateMultipleDepositAddressesRequest from a JSON stringcreate_multiple_deposit_addresses_request_instance=CreateMultipleDepositAddressesRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateMultipleDepositAddressesRequest.to_json())
# convert the object into a dictcreate_multiple_deposit_addresses_request_dict=create_multiple_deposit_addresses_request_instance.to_dict()
# create an instance of CreateMultipleDepositAddressesRequest from a dictcreate_multiple_deposit_addresses_request_from_dict=CreateMultipleDepositAddressesRequest.from_dict(create_multiple_deposit_addresses_request_dict)