Name | Type | Description | Notes |
---|---|---|---|
output | ScreeningOperationExecutionOutput | [optional] | |
started_at | float | ||
finished_at | float | [optional] | |
failure | ScreeningOperationFailure | [optional] |
from fireblocks.models.screening_operation_execution import ScreeningOperationExecution
# TODO update the JSON string below
json = "{}"
# create an instance of ScreeningOperationExecution from a JSON string
screening_operation_execution_instance = ScreeningOperationExecution.from_json(json)
# print the JSON string representation of the object
print(ScreeningOperationExecution.to_json())
# convert the object into a dict
screening_operation_execution_dict = screening_operation_execution_instance.to_dict()
# create an instance of ScreeningOperationExecution from a dict
screening_operation_execution_from_dict = ScreeningOperationExecution.from_dict(screening_operation_execution_dict)