Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 962 Bytes

HTTPBadRequestError.md

File metadata and controls

28 lines (20 loc) · 962 Bytes

HTTPBadRequestError

Properties

Name Type Description Notes
detail str

Example

from compute_api_client.models.http_bad_request_error import HTTPBadRequestError

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

# convert the object into a dict
http_bad_request_error_dict = http_bad_request_error_instance.to_dict()
# create an instance of HTTPBadRequestError from a dict
http_bad_request_error_form_dict = http_bad_request_error.from_dict(http_bad_request_error_dict)

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