V2GenomeAnnotationRequest

December 6, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
accessionstr[optional]
annotation_idsList[str][optional]
symbolsList[str][optional]
locationsList[str][optional]
gene_typesList[str][optional]
search_textList[str][optional]
sortList[V2SortField][optional]
include_annotation_typeList[V2GenomeAnnotationRequestAnnotationType][optional]
page_sizeint[optional]
table_fieldsList[str][optional]
table_formatV2GenomeAnnotationRequestGenomeAnnotationTableFormat[optional] [default to V2GenomeAnnotationRequestGenomeAnnotationTableFormat.NO_TABLE]
include_tabular_headerV2IncludeTabularHeader[optional] [default to V2IncludeTabularHeader.INCLUDE_TABULAR_HEADER_FIRST_PAGE_ONLY]
page_tokenstr[optional]

Example

from ncbi.datasets.openapi.models.v2_genome_annotation_request import V2GenomeAnnotationRequest

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

# convert the object into a dict
v2_genome_annotation_request_dict = v2_genome_annotation_request_instance.to_dict()
# create an instance of V2GenomeAnnotationRequest from a dict
v2_genome_annotation_request_from_dict = V2GenomeAnnotationRequest.from_dict(v2_genome_annotation_request_dict)

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