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
| 2407 2408 2409 | # File 'generated/google/apis/genomics_v1/classes.rb', line 2407 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
| 2398 2399 2400 | # File 'generated/google/apis/genomics_v1/classes.rb', line 2398 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
| 2405 2406 2407 | # File 'generated/google/apis/genomics_v1/classes.rb', line 2405 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2412 2413 2414 2415 | # File 'generated/google/apis/genomics_v1/classes.rb', line 2412 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 |