class Google::Apis::GenomicsV1beta2::KeyValue

Used to hold basic key value information.

Attributes

key[RW]

A string which maps to an array of values. Corresponds to the JSON property `key` @return [String]

value[RW]

The string values. Corresponds to the JSON property `value` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/genomics_v1beta2/classes.rb, line 1153
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/genomics_v1beta2/classes.rb, line 1158
def update!(**args)
  @key = args[:key] unless args[:key].nil?
  @value = args[:value] unless args[:value].nil?
end