Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 844 Bytes

ErrorModel.md

File metadata and controls

29 lines (20 loc) · 844 Bytes

ErrorModel

Properties

Name Type Description Notes
detail Detail

Example

from openapi_client.models.error_model import ErrorModel

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

# convert the object into a dict
error_model_dict = error_model_instance.to_dict()
# create an instance of ErrorModel from a dict
error_model_from_dict = ErrorModel.from_dict(error_model_dict)

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