Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.27 KB

ScreeningOperationExecution.md

File metadata and controls

32 lines (23 loc) · 1.27 KB

ScreeningOperationExecution

Properties

Name Type Description Notes
output ScreeningOperationExecutionOutput [optional]
started_at float
finished_at float [optional]
failure ScreeningOperationFailure [optional]

Example

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)

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