class Google::Apis::PartnersV2::EventData

Key value data pair for an event.

Attributes

key[RW]

Data type. Corresponds to the JSON property `key` @return [String]

values[RW]

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

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/partners_v2/classes.rb, line 198
def update!(**args)
  @key = args[:key] if args.key?(:key)
  @values = args[:values] if args.key?(:values)
end