V2reportsGeneNeighborsDescriptor
June 10, 2026 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| tax_id | str | [optional] | |
| gene_id | str | [optional] | |
| symbol | str | [optional] | |
| description | str | [optional] | |
| gene_type | V2GeneType | [optional] [default to V2GeneType.UNKNOWN] | |
| annotations | List[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)