V2reportsTaxonomyTypeMaterial

March 26, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
type_strain_namestr[optional]
type_strain_idstr[optional]
bio_collection_idstr[optional]
bio_collection_namestr[optional]
collection_typeList[V2reportsCollectionType][optional]
type_classstr[optional]

Example

from ncbi.datasets.openapi.models.v2reports_taxonomy_type_material import V2reportsTaxonomyTypeMaterial

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

# convert the object into a dict
v2reports_taxonomy_type_material_dict = v2reports_taxonomy_type_material_instance.to_dict()
# create an instance of V2reportsTaxonomyTypeMaterial from a dict
v2reports_taxonomy_type_material_from_dict = V2reportsTaxonomyTypeMaterial.from_dict(v2reports_taxonomy_type_material_dict)

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