Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.49 KB

WorkflowExecutionOperation.md

File metadata and controls

34 lines (25 loc) · 1.49 KB

WorkflowExecutionOperation

Properties

Name Type Description Notes
operation_id str
status ExecutionOperationStatus
operation_type DisbursementOperationType
validation_failure DisbursementValidationFailure [optional]
execution DisbursementOperationExecution [optional]
preview DisbursementOperationPreview [optional]

Example

from fireblocks.models.workflow_execution_operation import WorkflowExecutionOperation

# TODO update the JSON string below
json = "{}"
# create an instance of WorkflowExecutionOperation from a JSON string
workflow_execution_operation_instance = WorkflowExecutionOperation.from_json(json)
# print the JSON string representation of the object
print(WorkflowExecutionOperation.to_json())

# convert the object into a dict
workflow_execution_operation_dict = workflow_execution_operation_instance.to_dict()
# create an instance of WorkflowExecutionOperation from a dict
workflow_execution_operation_from_dict = WorkflowExecutionOperation.from_dict(workflow_execution_operation_dict)

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