PdfTemplate

Properties

NameTypeDescriptionNotes
idfloat
created_atdatetime
updated_atdatetime
user_propertiesList[PdfTemplateUserProperties][default to []]
variablesList[TemplateVariable][default to []]
belonging_variablesList[List[str]][default to []]
namestr
typestr
rendererstr
renderer_optionsobject
page_sizestr
page_width_ptfloat
page_height_ptfloat
marginMargin
has_headerbool
has_bodybool
has_footerbool
header_height_ptfloat
footer_height_ptfloat
header_marginMargin
footer_marginMargin
organizationOrganization[optional]

Example

from pdf_generator_client.models.pdf_template import PdfTemplate

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

# convert the object into a dict
pdf_template_dict = pdf_template_instance.to_dict()
# create an instance of PdfTemplate from a dict
pdf_template_from_dict = PdfTemplate.from_dict(pdf_template_dict)

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