UpdatePdfTemplateDto

Properties

NameTypeDescriptionNotes
namestrTemplate name[optional]
typestrTemplate type[optional]
rendererstrPDF renderer to use[optional]
page_sizestrPage size (e.g. A4, letter). Only used if pageWidthPt and pageHeightPt are not set.[optional]
page_width_ptfloatPage width in points[optional]
page_height_ptfloatPage height in points[optional]
marginMarginPage margins[optional]
header_height_ptfloatHeader height in points[optional]
footer_height_ptfloatFooter height in points[optional]
header_marginMarginHeader margin[optional]
footer_marginMarginFooter margin[optional]
defaultsCreatePdfTemplateDtoDefaults[optional]

Example

from pdf_generator_client.models.update_pdf_template_dto import UpdatePdfTemplateDto

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

# convert the object into a dict
update_pdf_template_dto_dict = update_pdf_template_dto_instance.to_dict()
# create an instance of UpdatePdfTemplateDto from a dict
update_pdf_template_dto_from_dict = UpdatePdfTemplateDto.from_dict(update_pdf_template_dto_dict)

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