class Google::Apis::DfareportingV3_3::FloodlightActivityDynamicTag

Dynamic Tag

Attributes

id[RW]

ID of this dynamic tag. This is a read-only, auto-generated field. Corresponds to the JSON property `id` @return [Fixnum]

name[RW]

Name of this tag. Corresponds to the JSON property `name` @return [String]

tag[RW]

Tag code. Corresponds to the JSON property `tag` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 5958
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_3/classes.rb, line 5963
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