Class: Google::Apis::GenomicsV1::SearchReadGroupSetsResponse
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1::SearchReadGroupSetsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/genomics_v1/classes.rb,
generated/google/apis/genomics_v1/representations.rb,
generated/google/apis/genomics_v1/representations.rb
Overview
The read group set search response.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The continuation token, which is used to page through large result sets.
-
#read_group_sets ⇒ Array<Google::Apis::GenomicsV1::ReadGroupSet>
The list of matching read group sets.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SearchReadGroupSetsResponse
constructor
A new instance of SearchReadGroupSetsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SearchReadGroupSetsResponse
Returns a new instance of SearchReadGroupSetsResponse
2730 2731 2732 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2730 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
2723 2724 2725 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2723 def next_page_token @next_page_token end |
#read_group_sets ⇒ Array<Google::Apis::GenomicsV1::ReadGroupSet>
The list of matching read group sets.
Corresponds to the JSON property readGroupSets
2728 2729 2730 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2728 def read_group_sets @read_group_sets end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2735 2736 2737 2738 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2735 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @read_group_sets = args[:read_group_sets] if args.key?(:read_group_sets) end |