Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

ApiErrorUnprocessableEntity

Properties

Name Type Description Notes
status int
error str
reason str

Example

from kowabunga.models.api_error_unprocessable_entity import ApiErrorUnprocessableEntity

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

# convert the object into a dict
api_error_unprocessable_entity_dict = api_error_unprocessable_entity_instance.to_dict()
# create an instance of ApiErrorUnprocessableEntity from a dict
api_error_unprocessable_entity_from_dict = ApiErrorUnprocessableEntity.from_dict(api_error_unprocessable_entity_dict)

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