V2TaxonomyFilteredSubtreeRequest
March 4, 2026 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| taxons | List[str] | [optional] | |
| specified_limit | bool | [optional] | |
| exclude_extinct | bool | [optional] | |
| levels | int | [optional] | |
| rank_limits | List[V2reportsRankType] | [optional] | |
| include_incertae_sedis | bool | [optional] |
Example
from ncbi.datasets.openapi.models.v2_taxonomy_filtered_subtree_request import V2TaxonomyFilteredSubtreeRequest
# TODO update the JSON string below
json = "{}"
# create an instance of V2TaxonomyFilteredSubtreeRequest from a JSON string
v2_taxonomy_filtered_subtree_request_instance = V2TaxonomyFilteredSubtreeRequest.from_json(json)
# print the JSON string representation of the object
print(V2TaxonomyFilteredSubtreeRequest.to_json())
# convert the object into a dict
v2_taxonomy_filtered_subtree_request_dict = v2_taxonomy_filtered_subtree_request_instance.to_dict()
# create an instance of V2TaxonomyFilteredSubtreeRequest from a dict
v2_taxonomy_filtered_subtree_request_from_dict = V2TaxonomyFilteredSubtreeRequest.from_dict(v2_taxonomy_filtered_subtree_request_dict)