Class: Google::Apis::GenomicsV1::SearchVariantSetsResponse
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1::SearchVariantSetsResponse
- 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 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::GenomicsV1::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::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SearchVariantSetsResponse
Returns a new instance of SearchVariantSetsResponse
1597 1598 1599 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1597 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
1595 1596 1597 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1595 def next_page_token @next_page_token end |
#variant_sets ⇒ Array<Google::Apis::GenomicsV1::VariantSet>
The variant sets belonging to the requested dataset.
Corresponds to the JSON property variantSets
1588 1589 1590 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1588 def variant_sets @variant_sets end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1602 1603 1604 1605 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1602 def update!(**args) @variant_sets = args[:variant_sets] if args.key?(:variant_sets) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |