PdfTemplateUserProperties

Properties

NameTypeDescriptionNotes
idfloat
created_atdatetime
updated_atdatetime
last_useddatetime[optional]
templatePdfTemplate

Example

from pdf_generator_client.models.pdf_template_user_properties import PdfTemplateUserProperties

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

# convert the object into a dict
pdf_template_user_properties_dict = pdf_template_user_properties_instance.to_dict()
# create an instance of PdfTemplateUserProperties from a dict
pdf_template_user_properties_from_dict = PdfTemplateUserProperties.from_dict(pdf_template_user_properties_dict)

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