Name | Type | Description | Notes |
---|---|---|---|
operation_id | str | ||
status | ExecutionOperationStatus | ||
operation_type | DisbursementOperationType | ||
validation_failure | DisbursementValidationFailure | [optional] | |
execution | DisbursementOperationExecution | [optional] | |
preview | DisbursementOperationPreview | [optional] |
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)