Class: Google::Apis::DfareportingV2_1::FloodlightActivityDynamicTag
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_1::FloodlightActivityDynamicTag
- Includes:
- Core::Hashable
- Defined in:
- generated/google/apis/dfareporting_v2_1/classes.rb,
generated/google/apis/dfareporting_v2_1/representations.rb,
generated/google/apis/dfareporting_v2_1/representations.rb
Overview
Dynamic Tag
Instance Attribute Summary collapse
-
#id ⇒ String
ID of this dynamic tag.
-
#name ⇒ String
Name of this tag.
-
#tag ⇒ String
Tag code.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FloodlightActivityDynamicTag
constructor
A new instance of FloodlightActivityDynamicTag.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ FloodlightActivityDynamicTag
Returns a new instance of FloodlightActivityDynamicTag.
5332 5333 5334 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5332 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
ID of this dynamic tag. This is a read-only, auto-generated field.
Corresponds to the JSON property id
5320 5321 5322 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5320 def id @id end |
#name ⇒ String
Name of this tag.
Corresponds to the JSON property name
5325 5326 5327 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5325 def name @name end |
#tag ⇒ String
Tag code.
Corresponds to the JSON property tag
5330 5331 5332 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5330 def tag @tag end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5337 5338 5339 5340 5341 |
# File 'generated/google/apis/dfareporting_v2_1/classes.rb', line 5337 def update!(**args) @id = args[:id] unless args[:id].nil? @name = args[:name] unless args[:name].nil? @tag = args[:tag] unless args[:tag].nil? end |