Class: Google::Apis::DfareportingV2_3::FloodlightActivityDynamicTag
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_3::FloodlightActivityDynamicTag
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_3/classes.rb,
generated/google/apis/dfareporting_v2_3/representations.rb,
generated/google/apis/dfareporting_v2_3/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::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ FloodlightActivityDynamicTag
Returns a new instance of FloodlightActivityDynamicTag.
5402 5403 5404 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5402 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
5390 5391 5392 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5390 def id @id end |
#name ⇒ String
Name of this tag.
Corresponds to the JSON property name
5395 5396 5397 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5395 def name @name end |
#tag ⇒ String
Tag code.
Corresponds to the JSON property tag
5400 5401 5402 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5400 def tag @tag end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5407 5408 5409 5410 5411 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 5407 def update!(**args) @id = args[:id] if args.key?(:id) @name = args[:name] if args.key?(:name) @tag = args[:tag] if args.key?(:tag) end |