Name | Type | Description | Notes |
---|---|---|---|
reason | str | ||
data | ScreeningOperationExecutionOutput | [optional] |
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)