V2reportsProductDescriptor
June 10, 2026 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| gene_id | str | [optional] | |
| symbol | str | [optional] | |
| description | str | [optional] | |
| tax_id | str | [optional] | |
| taxname | str | [optional] | |
| common_name | str | [optional] | |
| type | V2GeneType | [optional] [default to V2GeneType.UNKNOWN] | |
| rna_type | V2reportsRnaType | [optional] [default to V2reportsRnaType.RNA_UNKNOWN] | |
| transcripts | List[V2reportsTranscript] | [optional] | |
| transcript_count | int | [optional] | |
| protein_count | int | [optional] | |
| transcript_type_counts | List[V2reportsTranscriptTypeCount] | [optional] |
Example
from ncbi.datasets.openapi.models.v2reports_product_descriptor import V2reportsProductDescriptor
# TODO update the JSON string below
json = "{}"
# create an instance of V2reportsProductDescriptor from a JSON string
v2reports_product_descriptor_instance = V2reportsProductDescriptor.from_json(json)
# print the JSON string representation of the object
print(V2reportsProductDescriptor.to_json())
# convert the object into a dict
v2reports_product_descriptor_dict = v2reports_product_descriptor_instance.to_dict()
# create an instance of V2reportsProductDescriptor from a dict
v2reports_product_descriptor_from_dict = V2reportsProductDescriptor.from_dict(v2reports_product_descriptor_dict)