Class: Google::Apis::GenomicsV1beta2::SearchVariantSetsResponse
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1beta2::SearchVariantSetsResponse
- 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 search variant sets response.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The continuation token, which is used to page through large result sets.
-
#variant_sets ⇒ Array<Google::Apis::GenomicsV1beta2::VariantSet>
The variant sets belonging to the requested dataset.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SearchVariantSetsResponse
constructor
A new instance of SearchVariantSetsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SearchVariantSetsResponse
Returns a new instance of SearchVariantSetsResponse.
2816 2817 2818 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2816 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
2809 2810 2811 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2809 def next_page_token @next_page_token end |
#variant_sets ⇒ Array<Google::Apis::GenomicsV1beta2::VariantSet>
The variant sets belonging to the requested dataset.
Corresponds to the JSON property variantSets
2814 2815 2816 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2814 def variant_sets @variant_sets end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2821 2822 2823 2824 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2821 def update!(**args) @next_page_token = args[:next_page_token] unless args[:next_page_token].nil? @variant_sets = args[:variant_sets] unless args[:variant_sets].nil? end |