HttpErrorDto

Properties

NameTypeDescriptionNotes
status_codefloat
messagestr
errorstr

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)

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