| Name | Type | Description | Notes |
|---|---|---|---|
| reason | FailureReason |
from fireblocks.models.failure import Failure
# TODO update the JSON string below
json = "{}"
# create an instance of Failure from a JSON string
failure_instance = Failure.from_json(json)
# print the JSON string representation of the object
print(Failure.to_json())
# convert the object into a dict
failure_dict = failure_instance.to_dict()
# create an instance of Failure from a dict
failure_from_dict = Failure.from_dict(failure_dict)