Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 911 Bytes

File metadata and controls

30 lines (21 loc) · 911 Bytes

APIError

Properties

Name Type Description Notes
var_schema str A URL to the JSON Schema for this object. [optional] [readonly]
error ErrorBody

Example

from revengai.models.api_error import APIError

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

# convert the object into a dict
api_error_dict = api_error_instance.to_dict()
# create an instance of APIError from a dict
api_error_from_dict = APIError.from_dict(api_error_dict)

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