Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.04 KB

ErrorObjectSchema.md

File metadata and controls

33 lines (24 loc) · 1.04 KB

ErrorObjectSchema

Properties

Name Type Description Notes
error_code str
name str
message str
details object [optional]
link str [optional]

Example

from openapi_client.models.error_object_schema import ErrorObjectSchema

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

# convert the object into a dict
error_object_schema_dict = error_object_schema_instance.to_dict()
# create an instance of ErrorObjectSchema from a dict
error_object_schema_from_dict = ErrorObjectSchema.from_dict(error_object_schema_dict)

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