V2reportsProductDescriptor

June 10, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
gene_idstr[optional]
symbolstr[optional]
descriptionstr[optional]
tax_idstr[optional]
taxnamestr[optional]
common_namestr[optional]
typeV2GeneType[optional] [default to V2GeneType.UNKNOWN]
rna_typeV2reportsRnaType[optional] [default to V2reportsRnaType.RNA_UNKNOWN]
transcriptsList[V2reportsTranscript][optional]
transcript_countint[optional]
protein_countint[optional]
transcript_type_countsList[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)

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