class Google::Apis::DfareportingV3_3::ClickThroughUrlSuffixProperties

Click Through URL Suffix settings.

Attributes

click_through_url_suffix[RW]

Click-through URL suffix to apply to all ads in this entity's scope. Must be less than 128 characters long. Corresponds to the JSON property `clickThroughUrlSuffix` @return [String]

override_inherited_suffix[RW]

Whether this entity should override the inherited click-through URL suffix with its own defined value. Corresponds to the JSON property `overrideInheritedSuffix` @return [Boolean]

override_inherited_suffix?[RW]

Whether this entity should override the inherited click-through URL suffix with its own defined value. Corresponds to the JSON property `overrideInheritedSuffix` @return [Boolean]

Public Class Methods

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