Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 809 Bytes

File metadata and controls

29 lines (20 loc) · 809 Bytes

Failure

Properties

Name Type Description Notes
reason FailureReason

Example

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)

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