Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

VaultAccountTagAttachmentOperation

Properties

Name Type Description Notes
vault_account_id str The ID of the vault account
tag_id str Tag ID
action TagAttachmentOperationAction

Example

from fireblocks.models.vault_account_tag_attachment_operation import VaultAccountTagAttachmentOperation

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

# convert the object into a dict
vault_account_tag_attachment_operation_dict = vault_account_tag_attachment_operation_instance.to_dict()
# create an instance of VaultAccountTagAttachmentOperation from a dict
vault_account_tag_attachment_operation_from_dict = VaultAccountTagAttachmentOperation.from_dict(vault_account_tag_attachment_operation_dict)

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