HttpErrorDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| status_code | float | ||
| message | str | ||
| error | str |
Example
from pdf_generator_client.models.http_error_dto import HttpErrorDto
# TODO update the JSON string below
json = "{}"
# create an instance of HttpErrorDto from a JSON string
http_error_dto_instance = HttpErrorDto.from_json(json)
# print the JSON string representation of the object
print(HttpErrorDto.to_json())
# convert the object into a dict
http_error_dto_dict = http_error_dto_instance.to_dict()
# create an instance of HttpErrorDto from a dict
http_error_dto_from_dict = HttpErrorDto.from_dict(http_error_dto_dict)