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
2905 2906 2907 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2905 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
2898 2899 2900 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2898 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
2903 2904 2905 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2903 def reference_sets @reference_sets end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2910 2911 2912 2913 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2910 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @reference_sets = args[:reference_sets] if args.key?(:reference_sets) end |