Class: Google::Apis::DfareportingV2_3::ClickTag

Inherits:
Object
  • Object
show all
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

Creative Click 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) ⇒ ClickTag

Returns a new instance of ClickTag.



1923
1924
1925
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 1923

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

Instance Attribute Details

#event_nameString

Advertiser event name associated with the click tag. This field is used by ENHANCED_BANNER, ENHANCED_IMAGE, and HTML5_BANNER creatives. Corresponds to the JSON property eventName

Returns:

  • (String)


1908
1909
1910
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 1908

def event_name
  @event_name
end

#nameString

Parameter name for the specified click tag. For ENHANCED_IMAGE creative assets, this field must match the value of the creative asset's creativeAssetId.name field. Corresponds to the JSON property name

Returns:

  • (String)


1915
1916
1917
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 1915

def name
  @name
end

#valueString

Parameter value for the specified click tag. This field contains a click- through url. Corresponds to the JSON property value

Returns:

  • (String)


1921
1922
1923
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 1921

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1928
1929
1930
1931
1932
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 1928

def update!(**args)
  @event_name = args[:event_name] if args.key?(:event_name)
  @name = args[:name] if args.key?(:name)
  @value = args[:value] if args.key?(:value)
end