Skip to content

StudySearchInfo

Properties

Name Type Description Notes
accession str [optional]
name str [optional]
owner str [optional]
file_creation str [optional]
size int [optional]
has_facs bool [optional]
has_genomic bool [optional]
has_transcriptomics bool [optional]
summary List[FindObjectsResponseObjectsPageContentInnerSummaryInner] [optional]

Example

from odm_api.models.study_search_info import StudySearchInfo

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

# convert the object into a dict
study_search_info_dict = study_search_info_instance.to_dict()
# create an instance of StudySearchInfo from a dict
study_search_info_from_dict = StudySearchInfo.from_dict(study_search_info_dict)
[Back to Model list] [Back to API list] [Back to README]