Class: Google::Apis::GenomicsV1::SearchCallSetsResponse

Inherits:
Object
  • Object
show all
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 call set search response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SearchCallSetsResponse

Returns a new instance of SearchCallSetsResponse



2661
2662
2663
# File 'generated/google/apis/genomics_v1/classes.rb', line 2661

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#call_setsArray<Google::Apis::GenomicsV1::CallSet>

The list of matching call sets. Corresponds to the JSON property callSets



2652
2653
2654
# File 'generated/google/apis/genomics_v1/classes.rb', line 2652

def call_sets
  @call_sets
end

#next_page_tokenString

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

Returns:

  • (String)


2659
2660
2661
# File 'generated/google/apis/genomics_v1/classes.rb', line 2659

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2666
2667
2668
2669
# File 'generated/google/apis/genomics_v1/classes.rb', line 2666

def update!(**args)
  @call_sets = args[:call_sets] if args.key?(:call_sets)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end