Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 887 Bytes

File metadata and controls

30 lines (21 loc) · 887 Bytes

ErrorSchema

Properties

Name Type Description Notes
message str [optional]
code float [optional]

Example

from fireblocks.models.error_schema import ErrorSchema

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

# convert the object into a dict
error_schema_dict = error_schema_instance.to_dict()
# create an instance of ErrorSchema from a dict
error_schema_from_dict = ErrorSchema.from_dict(error_schema_dict)

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