from pdf_generator_client.models.pdf_template_user_properties import PdfTemplateUserProperties
# TODO update the JSON string belowjson ="{}"# create an instance of PdfTemplateUserProperties from a JSON stringpdf_template_user_properties_instance = PdfTemplateUserProperties.from_json(json)# print the JSON string representation of the objectprint(PdfTemplateUserProperties.to_json())# convert the object into a dictpdf_template_user_properties_dict = pdf_template_user_properties_instance.to_dict()# create an instance of PdfTemplateUserProperties from a dictpdf_template_user_properties_from_dict = PdfTemplateUserProperties.from_dict(pdf_template_user_properties_dict)