class Google::Apis::DfareportingV3_4::CustomFloodlightVariable
A custom floodlight variable.
Attributes
kind[RW]
Identifies what kind of resource this is. Value: the fixed string “ dfareporting#customFloodlightVariable”. Corresponds to the JSON property `kind` @return [String]
type[RW]
The type of custom floodlight variable to supply a value for. These map to the “u=” in the tags. Corresponds to the JSON property `type` @return [String]
value[RW]
The value of the custom floodlight variable. The length of string must not exceed 100 characters. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 4971 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dfareporting_v3_4/classes.rb, line 4976 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