Class: Google::Apis::DfareportingV2_6::FloodlightActivityDynamicTag

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v2_6/classes.rb,
generated/google/apis/dfareporting_v2_6/representations.rb,
generated/google/apis/dfareporting_v2_6/representations.rb

Overview

Dynamic Tag

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ FloodlightActivityDynamicTag

Returns a new instance of FloodlightActivityDynamicTag.



5883
5884
5885
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 5883

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#idString

ID of this dynamic tag. This is a read-only, auto-generated field. Corresponds to the JSON property id

Returns:

  • (String)


5871
5872
5873
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 5871

def id
  @id
end

#nameString

Name of this tag. Corresponds to the JSON property name

Returns:

  • (String)


5876
5877
5878
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 5876

def name
  @name
end

#tagString

Tag code. Corresponds to the JSON property tag

Returns:

  • (String)


5881
5882
5883
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 5881

def tag
  @tag
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5888
5889
5890
5891
5892
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 5888

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