class Google::Apis::GenomicsV1::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_v1/classes.rb, line 2422 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_v1/classes.rb, line 2427 def update!(**args) @offset = args[:offset] if args.key?(:offset) @sequence = args[:sequence] if args.key?(:sequence) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end