V2reportsGeneNeighborsDescriptor

June 10, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
tax_idstr[optional]
gene_idstr[optional]
symbolstr[optional]
descriptionstr[optional]
gene_typeV2GeneType[optional] [default to V2GeneType.UNKNOWN]
annotationsList[V2reportsGeneNeighborsAnnotation][optional]

Example

from ncbi.datasets.openapi.models.v2reports_gene_neighbors_descriptor import V2reportsGeneNeighborsDescriptor

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

# convert the object into a dict
v2reports_gene_neighbors_descriptor_dict = v2reports_gene_neighbors_descriptor_instance.to_dict()
# create an instance of V2reportsGeneNeighborsDescriptor from a dict
v2reports_gene_neighbors_descriptor_from_dict = V2reportsGeneNeighborsDescriptor.from_dict(v2reports_gene_neighbors_descriptor_dict)

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