Class: Google::Apis::DfareportingV2_7::CustomFloodlightVariable

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

Overview

A custom floodlight variable.

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) ⇒ CustomFloodlightVariable

Returns a new instance of CustomFloodlightVariable



4332
4333
4334
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 4332

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

Instance Attribute Details

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#customFloodlightVariable". Corresponds to the JSON property kind

Returns:

  • (String)


4318
4319
4320
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 4318

def kind
  @kind
end

#typeString

The type of custom floodlight variable to supply a value for. These map to the "u[1-20]=" in the tags. Corresponds to the JSON property type

Returns:

  • (String)


4324
4325
4326
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 4324

def type
  @type
end

#valueString

The value of the custom floodlight variable. The length of string must not exceed 50 characters. Corresponds to the JSON property value

Returns:

  • (String)


4330
4331
4332
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 4330

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4337
4338
4339
4340
4341
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 4337

def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @type = args[:type] if args.key?(:type)
  @value = args[:value] if args.key?(:value)
end