V2TaxonomyMatch

March 26, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
warningsList[V2reportsWarning][optional]
errorsList[V2reportsError][optional]
queryList[str][optional]
taxonomyV2TaxonomyNode[optional]

Example

from ncbi.datasets.openapi.models.v2_taxonomy_match import V2TaxonomyMatch

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

# convert the object into a dict
v2_taxonomy_match_dict = v2_taxonomy_match_instance.to_dict()
# create an instance of V2TaxonomyMatch from a dict
v2_taxonomy_match_from_dict = V2TaxonomyMatch.from_dict(v2_taxonomy_match_dict)

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