Class: Google::Apis::GenomicsV1beta2::SearchCallSetsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable
Defined in:
generated/google/apis/genomics_v1beta2/classes.rb,
generated/google/apis/genomics_v1beta2/representations.rb,
generated/google/apis/genomics_v1beta2/representations.rb

Overview

The call set search response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SearchCallSetsResponse

Returns a new instance of SearchCallSetsResponse.



2353
2354
2355
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2353

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

Instance Attribute Details

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

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



2344
2345
2346
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2344

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)


2351
2352
2353
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2351

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2358
2359
2360
2361
# File 'generated/google/apis/genomics_v1beta2/classes.rb', line 2358

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