Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.15 KB

ScreeningOperationExecutionOutput.md

File metadata and controls

29 lines (20 loc) · 1.15 KB

ScreeningOperationExecutionOutput

Properties

Name Type Description Notes
verdicts List[ScreeningVerdict]

Example

from fireblocks.models.screening_operation_execution_output import ScreeningOperationExecutionOutput

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

# convert the object into a dict
screening_operation_execution_output_dict = screening_operation_execution_output_instance.to_dict()
# create an instance of ScreeningOperationExecutionOutput from a dict
screening_operation_execution_output_from_dict = ScreeningOperationExecutionOutput.from_dict(screening_operation_execution_output_dict)

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