Name | Type | Description | Notes |
---|---|---|---|
operation_id | str | ||
status | ExecutionOperationStatus | ||
validation_failure | TransferValidationFailure | [optional] | |
operation_type | TransferOperationType | ||
preview | TransferOperationPreview | [optional] | |
execution | TransferOperationExecution | [optional] |
from fireblocks.models.execution_transfer_operation import ExecutionTransferOperation
# TODO update the JSON string below
json = "{}"
# create an instance of ExecutionTransferOperation from a JSON string
execution_transfer_operation_instance = ExecutionTransferOperation.from_json(json)
# print the JSON string representation of the object
print(ExecutionTransferOperation.to_json())
# convert the object into a dict
execution_transfer_operation_dict = execution_transfer_operation_instance.to_dict()
# create an instance of ExecutionTransferOperation from a dict
execution_transfer_operation_from_dict = ExecutionTransferOperation.from_dict(execution_transfer_operation_dict)