Class: Google::Apis::GenomicsV1::SearchAnnotationSetsResponse
- Inherits:
-
Object
- Object
- Google::Apis::GenomicsV1::SearchAnnotationSetsResponse
- 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
-
#annotation_sets ⇒ Array<Google::Apis::GenomicsV1::AnnotationSet>
The matching annotation sets.
-
#next_page_token ⇒ String
The continuation token, which is used to page through large result sets.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SearchAnnotationSetsResponse
constructor
A new instance of SearchAnnotationSetsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SearchAnnotationSetsResponse
Returns a new instance of SearchAnnotationSetsResponse
2497 2498 2499 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2497 def initialize(**args) update!(**args) end |
Instance Attribute Details
#annotation_sets ⇒ Array<Google::Apis::GenomicsV1::AnnotationSet>
The matching annotation sets.
Corresponds to the JSON property annotationSets
2488 2489 2490 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2488 def annotation_sets @annotation_sets end |
#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
2495 2496 2497 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2495 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2502 2503 2504 2505 |
# File 'generated/google/apis/genomics_v1/classes.rb', line 2502 def update!(**args) @annotation_sets = args[:annotation_sets] if args.key?(:annotation_sets) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |