| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | [optional] | |
| code | float | [optional] |
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)