Skip to content

FindObjectsResponseObjectsPageContentInner

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.find_objects_response_objects_page_content_inner import FindObjectsResponseObjectsPageContentInner

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

# convert the object into a dict
find_objects_response_objects_page_content_inner_dict = find_objects_response_objects_page_content_inner_instance.to_dict()
# create an instance of FindObjectsResponseObjectsPageContentInner from a dict
find_objects_response_objects_page_content_inner_from_dict = FindObjectsResponseObjectsPageContentInner.from_dict(find_objects_response_objects_page_content_inner_dict)
[Back to Model list] [Back to API list] [Back to README]