Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.39 KB

ExecutionScreeningOperation.md

File metadata and controls

33 lines (24 loc) · 1.39 KB

ExecutionScreeningOperation

Properties

Name Type Description Notes
operation_id str
status ExecutionOperationStatus
operation_type ScreeningOperationType
validation_failure ScreeningValidationFailure [optional]
execution ScreeningOperationExecution [optional]

Example

from fireblocks.models.execution_screening_operation import ExecutionScreeningOperation

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

# convert the object into a dict
execution_screening_operation_dict = execution_screening_operation_instance.to_dict()
# create an instance of ExecutionScreeningOperation from a dict
execution_screening_operation_from_dict = ExecutionScreeningOperation.from_dict(execution_screening_operation_dict)

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