Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.46 KB

ExecutionTransferOperation.md

File metadata and controls

34 lines (25 loc) · 1.46 KB

ExecutionTransferOperation

Properties

Name Type Description Notes
operation_id str
status ExecutionOperationStatus
validation_failure TransferValidationFailure [optional]
operation_type TransferOperationType
preview TransferOperationPreview [optional]
execution TransferOperationExecution [optional]

Example

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)

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