PdfTemplateListResponseDto

Properties

NameTypeDescriptionNotes
resultsList[PdfTemplate]
totalfloat

Example

from pdf_generator_client.models.pdf_template_list_response_dto import PdfTemplateListResponseDto

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

# convert the object into a dict
pdf_template_list_response_dto_dict = pdf_template_list_response_dto_instance.to_dict()
# create an instance of PdfTemplateListResponseDto from a dict
pdf_template_list_response_dto_from_dict = PdfTemplateListResponseDto.from_dict(pdf_template_list_response_dto_dict)

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