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
      3044 3045 3046  | 
    
      # File 'generated/google/apis/genomics_v1/classes.rb', line 3044 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
      3037 3038 3039  | 
    
      # File 'generated/google/apis/genomics_v1/classes.rb', line 3037 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
      3042 3043 3044  | 
    
      # File 'generated/google/apis/genomics_v1/classes.rb', line 3042 def variant_sets @variant_sets end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3049 3050 3051 3052  | 
    
      # File 'generated/google/apis/genomics_v1/classes.rb', line 3049 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  |