Skip to content

StudyValidationSummary

Properties

Name Type Description Notes
samples List[StudyValidationSummarySamplesInner] [optional]

Example

from odm_api.models.study_validation_summary import StudyValidationSummary

# TODO update the JSON string below
json = "{}"
# create an instance of StudyValidationSummary from a JSON string
study_validation_summary_instance = StudyValidationSummary.from_json(json)
# print the JSON string representation of the object
print(StudyValidationSummary.to_json())

# convert the object into a dict
study_validation_summary_dict = study_validation_summary_instance.to_dict()
# create an instance of StudyValidationSummary from a dict
study_validation_summary_from_dict = StudyValidationSummary.from_dict(study_validation_summary_dict)
[Back to Model list] [Back to API list] [Back to README]