class Google::Apis::GenomicsV1beta2::ListBasesResponse
Attributes
next_page_token[RW]
The continuation token, which is used to page through large result sets. Provide this value in a subsequent request to return the next page of results. This field will be empty if there aren't any additional results. Corresponds to the JSON property `nextPageToken` @return [String]
offset[RW]
The offset position (0-based) of the given sequence from the start of this Reference. This value will differ for each page in a paginated request. Corresponds to the JSON property `offset` @return [String]
sequence[RW]
A substring of the bases that make up this reference. Corresponds to the JSON property `sequence` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/genomics_v1beta2/classes.rb, line 1223 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/genomics_v1beta2/classes.rb, line 1228 def update!(**args) @next_page_token = args[:next_page_token] unless args[:next_page_token].nil? @offset = args[:offset] unless args[:offset].nil? @sequence = args[:sequence] unless args[:sequence].nil? end