Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1001 Bytes

File metadata and controls

31 lines (22 loc) · 1001 Bytes

ExampleError

I need an example error to appease the linter. Please accept my offering

Properties

Name Type Description Notes
meta Meta
error ExampleErrorError

Example

from openapi_client.models.example_error import ExampleError

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

# convert the object into a dict
example_error_dict = example_error_instance.to_dict()
# create an instance of ExampleError from a dict
example_error_from_dict = ExampleError.from_dict(example_error_dict)

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