Class: Google::Apis::GenomicsV1beta2::SearchReferenceSetsResponse
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1beta2::SearchReferenceSetsResponse
- 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
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The continuation token, which is used to page through large result sets.
-
#reference_sets ⇒ Array<Google::Apis::GenomicsV1beta2::ReferenceSet>
The matching references sets.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SearchReferenceSetsResponse
constructor
A new instance of SearchReferenceSetsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SearchReferenceSetsResponse
Returns a new instance of SearchReferenceSetsResponse.
2678 2679 2680 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2678 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
2671 2672 2673 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2671 def next_page_token @next_page_token end |
#reference_sets ⇒ Array<Google::Apis::GenomicsV1beta2::ReferenceSet>
The matching references sets.
Corresponds to the JSON property referenceSets
2676 2677 2678 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2676 def reference_sets @reference_sets end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2683 2684 2685 2686 |
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2683 def update!(**args) @next_page_token = args[:next_page_token] unless args[:next_page_token].nil? @reference_sets = args[:reference_sets] unless args[:reference_sets].nil? end |