Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 992 Bytes

File metadata and controls

31 lines (22 loc) · 992 Bytes

ApiErrorBadRequest

Properties

Name Type Description Notes
status int
error str
reason str

Example

from kowabunga.models.api_error_bad_request import ApiErrorBadRequest

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

# convert the object into a dict
api_error_bad_request_dict = api_error_bad_request_instance.to_dict()
# create an instance of ApiErrorBadRequest from a dict
api_error_bad_request_from_dict = ApiErrorBadRequest.from_dict(api_error_bad_request_dict)

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