Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

ErrorBadRequest.md

File metadata and controls

31 lines (22 loc) · 1.02 KB

ErrorBadRequest

Properties

Name Type Description Notes
code str HTTP Status Code [optional]
message str Detail error message [optional]
results object additional data [optional]

Example

from openapi_client.models.error_bad_request import ErrorBadRequest

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

# convert the object into a dict
error_bad_request_dict = error_bad_request_instance.to_dict()
# create an instance of ErrorBadRequest from a dict
error_bad_request_from_dict = ErrorBadRequest.from_dict(error_bad_request_dict)

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