Class: Google::Apis::DfareportingV2_5::FloodlightActivityDynamicTag
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_5::FloodlightActivityDynamicTag
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_5/classes.rb,
generated/google/apis/dfareporting_v2_5/representations.rb,
generated/google/apis/dfareporting_v2_5/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.
5781 5782 5783 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 5781 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
5769 5770 5771 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 5769 def id @id end |
#name ⇒ String
Name of this tag.
Corresponds to the JSON property name
5774 5775 5776 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 5774 def name @name end |
#tag ⇒ String
Tag code.
Corresponds to the JSON property tag
5779 5780 5781 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 5779 def tag @tag end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5786 5787 5788 5789 5790 |
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 5786 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 |