from pdf_generator_client.models.list_documents_response_dto_entries_inner_template import ListDocumentsResponseDtoEntriesInnerTemplate
# TODO update the JSON string belowjson ="{}"# create an instance of ListDocumentsResponseDtoEntriesInnerTemplate from a JSON stringlist_documents_response_dto_entries_inner_template_instance = ListDocumentsResponseDtoEntriesInnerTemplate.from_json(json)# print the JSON string representation of the objectprint(ListDocumentsResponseDtoEntriesInnerTemplate.to_json())# convert the object into a dictlist_documents_response_dto_entries_inner_template_dict = list_documents_response_dto_entries_inner_template_instance.to_dict()# create an instance of ListDocumentsResponseDtoEntriesInnerTemplate from a dictlist_documents_response_dto_entries_inner_template_from_dict = ListDocumentsResponseDtoEntriesInnerTemplate.from_dict(list_documents_response_dto_entries_inner_template_dict)