Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.38 KB

TransferOperationExecution.md

File metadata and controls

34 lines (25 loc) · 1.38 KB

TransferOperationExecution

Properties

Name Type Description Notes
input TransferOperationConfigParams
output TransferOperationExecutionOutput [optional]
tx_id str [optional]
started_at float
finished_at float [optional]
failure TransferOperationFailure [optional]

Example

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)

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