Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

File metadata and controls

29 lines (20 loc) · 1.03 KB

UpdateVaultAccountRequest

Properties

Name Type Description Notes
name str Account Name [optional]

Example

from fireblocks.models.update_vault_account_request import UpdateVaultAccountRequest

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

# convert the object into a dict
update_vault_account_request_dict = update_vault_account_request_instance.to_dict()
# create an instance of UpdateVaultAccountRequest from a dict
update_vault_account_request_from_dict = UpdateVaultAccountRequest.from_dict(update_vault_account_request_dict)

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