from pdf_generator_client.models.pdf_template_list_response_dto import PdfTemplateListResponseDto
# TODO update the JSON string belowjson ="{}"# create an instance of PdfTemplateListResponseDto from a JSON stringpdf_template_list_response_dto_instance = PdfTemplateListResponseDto.from_json(json)# print the JSON string representation of the objectprint(PdfTemplateListResponseDto.to_json())# convert the object into a dictpdf_template_list_response_dto_dict = pdf_template_list_response_dto_instance.to_dict()# create an instance of PdfTemplateListResponseDto from a dictpdf_template_list_response_dto_from_dict = PdfTemplateListResponseDto.from_dict(pdf_template_list_response_dto_dict)