fromavis_client.models.inspection_statisticsimportInspectionStatistics# TODO update the JSON string belowjson="{}"# create an instance of InspectionStatistics from a JSON stringinspection_statistics_instance=InspectionStatistics.from_json(json)# print the JSON string representation of the objectprintInspectionStatistics.to_json()# convert the object into a dictinspection_statistics_dict=inspection_statistics_instance.to_dict()# create an instance of InspectionStatistics from a dictinspection_statistics_form_dict=inspection_statistics.from_dict(inspection_statistics_dict)