Class: Google::Apis::GenomicsV1::SearchReferenceSetsResponse
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1::SearchReferenceSetsResponse
- 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
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::GenomicsV1::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::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SearchReferenceSetsResponse
Returns a new instance of SearchReferenceSetsResponse
1158 1159 1160 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1158 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
1156 1157 1158 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1156 def next_page_token @next_page_token end |
#reference_sets ⇒ Array<Google::Apis::GenomicsV1::ReferenceSet>
The matching references sets.
Corresponds to the JSON property referenceSets
1149 1150 1151 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1149 def reference_sets @reference_sets end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1163 1164 1165 1166 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 1163 def update!(**args) @reference_sets = args[:reference_sets] if args.key?(:reference_sets) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |