Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

RenameVaultAccountResponse.md

File metadata and controls

30 lines (21 loc) · 1.12 KB

RenameVaultAccountResponse

Properties

Name Type Description Notes
name str The new name of the vault account [optional]
id str The ID of the vault account [optional]

Example

from fireblocks.models.rename_vault_account_response import RenameVaultAccountResponse

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

# convert the object into a dict
rename_vault_account_response_dict = rename_vault_account_response_instance.to_dict()
# create an instance of RenameVaultAccountResponse from a dict
rename_vault_account_response_from_dict = RenameVaultAccountResponse.from_dict(rename_vault_account_response_dict)

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