V2reportsBiocollection

March 4, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
bio_collection_idstr[optional]
codestr[optional]
ncbi_unique_codestr[optional]
namestr[optional]
typestr[optional]
commentsstr[optional]

Example

from ncbi.datasets.openapi.models.v2reports_biocollection import V2reportsBiocollection

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

# convert the object into a dict
v2reports_biocollection_dict = v2reports_biocollection_instance.to_dict()
# create an instance of V2reportsBiocollection from a dict
v2reports_biocollection_from_dict = V2reportsBiocollection.from_dict(v2reports_biocollection_dict)

[Back to Model list] [Back to API list] [Back to README]