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



2548
2549
2550
# File 'generated/google/apis/genomics_v1/classes.rb', line 2548

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



2539
2540
2541
# File 'generated/google/apis/genomics_v1/classes.rb', line 2539

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)


2546
2547
2548
# File 'generated/google/apis/genomics_v1/classes.rb', line 2546

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2553
2554
2555
2556
# File 'generated/google/apis/genomics_v1/classes.rb', line 2553

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