from pdf_generator_client.models.list_documents_response_dto_entries_inner import ListDocumentsResponseDtoEntriesInner
# TODO update the JSON string belowjson ="{}"# create an instance of ListDocumentsResponseDtoEntriesInner from a JSON stringlist_documents_response_dto_entries_inner_instance = ListDocumentsResponseDtoEntriesInner.from_json(json)# print the JSON string representation of the objectprint(ListDocumentsResponseDtoEntriesInner.to_json())# convert the object into a dictlist_documents_response_dto_entries_inner_dict = list_documents_response_dto_entries_inner_instance.to_dict()# create an instance of ListDocumentsResponseDtoEntriesInner from a dictlist_documents_response_dto_entries_inner_from_dict = ListDocumentsResponseDtoEntriesInner.from_dict(list_documents_response_dto_entries_inner_dict)