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
| 2815 2816 2817 | # File 'generated/google/apis/genomics_v1/classes.rb', line 2815 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
| 2808 2809 2810 | # File 'generated/google/apis/genomics_v1/classes.rb', line 2808 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
| 2813 2814 2815 | # File 'generated/google/apis/genomics_v1/classes.rb', line 2813 def reference_sets @reference_sets end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2820 2821 2822 2823 | # File 'generated/google/apis/genomics_v1/classes.rb', line 2820 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 |