Class: Google::Apis::DfareportingV4::CustomFloodlightVariable
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV4::CustomFloodlightVariable
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dfareporting_v4/classes.rb,
lib/google/apis/dfareporting_v4/representations.rb,
lib/google/apis/dfareporting_v4/representations.rb
Overview
A custom floodlight variable. This field may only be used when calling batchinsert; it is not supported by batchupdate.
Instance Attribute Summary collapse
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#type ⇒ String
The type of custom floodlight variable to supply a value for.
-
#value ⇒ String
The value of the custom floodlight variable.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomFloodlightVariable
constructor
A new instance of CustomFloodlightVariable.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CustomFloodlightVariable
Returns a new instance of CustomFloodlightVariable.
5079 5080 5081 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 5079 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#customFloodlightVariable".
Corresponds to the JSON property kind
5065 5066 5067 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 5065 def kind @kind end |
#type ⇒ String
The type of custom floodlight variable to supply a value for. These map to the
"u[1-100]=" in the tags.
Corresponds to the JSON property type
5071 5072 5073 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 5071 def type @type end |
#value ⇒ String
The value of the custom floodlight variable. The length of string must not
exceed 100 characters.
Corresponds to the JSON property value
5077 5078 5079 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 5077 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5084 5085 5086 5087 5088 |
# File 'lib/google/apis/dfareporting_v4/classes.rb', line 5084 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 |