Class: Google::Apis::GenomicsV1::SearchVariantSetsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::GenomicsV1::SearchVariantSetsResponse
 
- 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
Overview
The search variant sets response.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The continuation token, which is used to page through large result sets. 
- 
  
    
      #variant_sets  ⇒ Array<Google::Apis::GenomicsV1::VariantSet> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The variant sets belonging to the requested dataset. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SearchVariantSetsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SearchVariantSetsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SearchVariantSetsResponse
Returns a new instance of SearchVariantSetsResponse
| 2954 2955 2956 | # File 'generated/google/apis/genomics_v1/classes.rb', line 2954 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
| 2947 2948 2949 | # File 'generated/google/apis/genomics_v1/classes.rb', line 2947 def next_page_token @next_page_token end | 
#variant_sets ⇒ Array<Google::Apis::GenomicsV1::VariantSet>
The variant sets belonging to the requested dataset.
Corresponds to the JSON property variantSets
| 2952 2953 2954 | # File 'generated/google/apis/genomics_v1/classes.rb', line 2952 def variant_sets @variant_sets end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2959 2960 2961 2962 | # File 'generated/google/apis/genomics_v1/classes.rb', line 2959 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @variant_sets = args[:variant_sets] if args.key?(:variant_sets) end |