from pdf_generator_client.models.list_documents_response_dto import ListDocumentsResponseDto
# TODO update the JSON string belowjson ="{}"# create an instance of ListDocumentsResponseDto from a JSON stringlist_documents_response_dto_instance = ListDocumentsResponseDto.from_json(json)# print the JSON string representation of the objectprint(ListDocumentsResponseDto.to_json())# convert the object into a dictlist_documents_response_dto_dict = list_documents_response_dto_instance.to_dict()# create an instance of ListDocumentsResponseDto from a dictlist_documents_response_dto_from_dict = ListDocumentsResponseDto.from_dict(list_documents_response_dto_dict)