class Google::Apis::DfareportingV3_3::TagSetting

Tag Settings

Attributes

additional_key_values[RW]

Additional key-values to be included in tags. Each key-value pair must be of the form key=value, and pairs must be separated by a semicolon (;). Keys and values must not contain commas. For example, id=2;color=red is a valid value for this field. Corresponds to the JSON property `additionalKeyValues` @return [String]

include_click_through_urls[RW]

Whether static landing page URLs should be included in the tags. This setting applies only to placements. Corresponds to the JSON property `includeClickThroughUrls` @return [Boolean]

include_click_through_urls?[RW]

Whether static landing page URLs should be included in the tags. This setting applies only to placements. Corresponds to the JSON property `includeClickThroughUrls` @return [Boolean]

include_click_tracking[RW]

Whether click-tracking string should be included in the tags. Corresponds to the JSON property `includeClickTracking` @return [Boolean]

include_click_tracking?[RW]

Whether click-tracking string should be included in the tags. Corresponds to the JSON property `includeClickTracking` @return [Boolean]

keyword_option[RW]

Option specifying how keywords are embedded in ad tags. This setting can be used to specify whether keyword placeholders are inserted in placement tags for this site. Publishers can then add keywords to those placeholders. Corresponds to the JSON property `keywordOption` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 11140
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 11145
def update!(**args)
  @additional_key_values = args[:additional_key_values] if args.key?(:additional_key_values)
  @include_click_through_urls = args[:include_click_through_urls] if args.key?(:include_click_through_urls)
  @include_click_tracking = args[:include_click_tracking] if args.key?(:include_click_tracking)
  @keyword_option = args[:keyword_option] if args.key?(:keyword_option)
end