HTTPException Model used for error response.
| Name | Type | Description | Notes |
|---|---|---|---|
| detail | Detail |
fromairflow_client.client.models.http_exception_responseimportHTTPExceptionResponse# TODO update the JSON string belowjson="{}"# create an instance of HTTPExceptionResponse from a JSON stringhttp_exception_response_instance=HTTPExceptionResponse.from_json(json)
# print the JSON string representation of the objectprint(HTTPExceptionResponse.to_json())
# convert the object into a dicthttp_exception_response_dict=http_exception_response_instance.to_dict()
# create an instance of HTTPExceptionResponse from a dicthttp_exception_response_from_dict=HTTPExceptionResponse.from_dict(http_exception_response_dict)