class Google::Apis::GenomicsV1beta2::SearchAnnotationsRequest
Attributes
The annotation sets to search within. The caller must have READ access to these annotation sets. Required. All queried annotation sets must have the same type. Corresponds to the JSON property `annotationSetIds` @return [Array<String>]
Specifies number of results to return in a single page. If unspecified, it will default to 256. The maximum value is 2048. Corresponds to the JSON property `pageSize` @return [Fixnum]
The continuation token, which is used to page through large result sets. To get the next page of results, set this parameter to the value of nextPageToken from the previous response. Corresponds to the JSON property `pageToken` @return [String]
A 0-based half-open genomic coordinate range for search requests. Corresponds to the JSON property `range` @return [Google::Apis::GenomicsV1beta2::QueryRange]
Public Class Methods
# File generated/google/apis/genomics_v1beta2/classes.rb, line 2257 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/genomics_v1beta2/classes.rb, line 2262 def update!(**args) @annotation_set_ids = args[:annotation_set_ids] unless args[:annotation_set_ids].nil? @page_size = args[:page_size] unless args[:page_size].nil? @page_token = args[:page_token] unless args[:page_token].nil? @range = args[:range] unless args[:range].nil? end