Class: Google::Apis::GenomicsV1beta2::SearchReadGroupSetsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable
Defined in:
generated/google/apis/genomics_v1beta2/classes.rb,
generated/google/apis/genomics_v1beta2/representations.rb,
generated/google/apis/genomics_v1beta2/representations.rb

Overview

The read group set search response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SearchReadGroupSetsResponse

Returns a new instance of SearchReadGroupSetsResponse.



2504
2505
2506
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2504

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


2497
2498
2499
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2497

def next_page_token
  @next_page_token
end

#read_group_setsArray<Google::Apis::GenomicsV1beta2::ReadGroupSet>

The list of matching read group sets. Corresponds to the JSON property readGroupSets



2502
2503
2504
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2502

def read_group_sets
  @read_group_sets
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2509
2510
2511
2512
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2509

def update!(**args)
  @next_page_token = args[:next_page_token] unless args[:next_page_token].nil?
  @read_group_sets = args[:read_group_sets] unless args[:read_group_sets].nil?
end