V2reportsClassification
December 6, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| superkingdom | V2reportsTaxData | [optional] | |
| kingdom | V2reportsTaxData | [optional] | |
| phylum | V2reportsTaxData | [optional] | |
| var_class | V2reportsTaxData | [optional] | |
| order | V2reportsTaxData | [optional] | |
| family | V2reportsTaxData | [optional] | |
| genus | V2reportsTaxData | [optional] | |
| species | V2reportsTaxData | [optional] | |
| domain | V2reportsTaxData | [optional] | |
| realm | V2reportsTaxData | [optional] | |
| acellular_root | V2reportsTaxData | [optional] |
Example
from ncbi.datasets.openapi.models.v2reports_classification import V2reportsClassification
# TODO update the JSON string below
json = "{}"
# create an instance of V2reportsClassification from a JSON string
v2reports_classification_instance = V2reportsClassification.from_json(json)
# print the JSON string representation of the object
print(V2reportsClassification.to_json())
# convert the object into a dict
v2reports_classification_dict = v2reports_classification_instance.to_dict()
# create an instance of V2reportsClassification from a dict
v2reports_classification_from_dict = V2reportsClassification.from_dict(v2reports_classification_dict)