Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.1 KB

ScreeningOperationFailure.md

File metadata and controls

30 lines (21 loc) · 1.1 KB

ScreeningOperationFailure

Properties

Name Type Description Notes
reason str
data ScreeningOperationExecutionOutput [optional]

Example

from fireblocks.models.screening_operation_failure import ScreeningOperationFailure

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

# convert the object into a dict
screening_operation_failure_dict = screening_operation_failure_instance.to_dict()
# create an instance of ScreeningOperationFailure from a dict
screening_operation_failure_from_dict = ScreeningOperationFailure.from_dict(screening_operation_failure_dict)

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