Name | Type | Description | Notes |
---|---|---|---|
input | TransferOperationConfigParams | ||
output | TransferOperationExecutionOutput | [optional] | |
tx_id | str | [optional] | |
started_at | float | ||
finished_at | float | [optional] | |
failure | TransferOperationFailure | [optional] |
from fireblocks.models.transfer_operation_execution import TransferOperationExecution
# TODO update the JSON string below
json = "{}"
# create an instance of TransferOperationExecution from a JSON string
transfer_operation_execution_instance = TransferOperationExecution.from_json(json)
# print the JSON string representation of the object
print(TransferOperationExecution.to_json())
# convert the object into a dict
transfer_operation_execution_dict = transfer_operation_execution_instance.to_dict()
# create an instance of TransferOperationExecution from a dict
transfer_operation_execution_from_dict = TransferOperationExecution.from_dict(transfer_operation_execution_dict)