from igvf_client.models.technical_sample_results import TechnicalSampleResults
# TODO update the JSON string below
json = "{}"
# create an instance of TechnicalSampleResults from a JSON string
technical_sample_results_instance = TechnicalSampleResults.from_json(json)
# print the JSON string representation of the object
print(TechnicalSampleResults.to_json())
# convert the object into a dict
technical_sample_results_dict = technical_sample_results_instance.to_dict()
# create an instance of TechnicalSampleResults from a dict
technical_sample_results_from_dict = TechnicalSampleResults.from_dict(technical_sample_results_dict)