| Name | Type | Description | Notes |
|---|---|---|---|
| applied_operations | List[VaultAccountTagAttachmentOperation] | The operations that were applied | [optional] |
| pending_operations | List[VaultAccountTagAttachmentPendingOperation] | The operations that are pending | [optional] |
| rejected_operations | List[VaultAccountTagAttachmentRejectedOperation] | The operations that were rejected | [optional] |
from fireblocks.models.vault_accounts_tag_attachment_operations_response import VaultAccountsTagAttachmentOperationsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of VaultAccountsTagAttachmentOperationsResponse from a JSON string
vault_accounts_tag_attachment_operations_response_instance = VaultAccountsTagAttachmentOperationsResponse.from_json(json)
# print the JSON string representation of the object
print(VaultAccountsTagAttachmentOperationsResponse.to_json())
# convert the object into a dict
vault_accounts_tag_attachment_operations_response_dict = vault_accounts_tag_attachment_operations_response_instance.to_dict()
# create an instance of VaultAccountsTagAttachmentOperationsResponse from a dict
vault_accounts_tag_attachment_operations_response_from_dict = VaultAccountsTagAttachmentOperationsResponse.from_dict(vault_accounts_tag_attachment_operations_response_dict)