from pdf_generator_client.models.pdf_template import PdfTemplate
# TODO update the JSON string belowjson ="{}"# create an instance of PdfTemplate from a JSON stringpdf_template_instance = PdfTemplate.from_json(json)# print the JSON string representation of the objectprint(PdfTemplate.to_json())# convert the object into a dictpdf_template_dict = pdf_template_instance.to_dict()# create an instance of PdfTemplate from a dictpdf_template_from_dict = PdfTemplate.from_dict(pdf_template_dict)