Class: Google::Apis::DfareportingV2_8::ClickThroughUrlSuffixProperties
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_8::ClickThroughUrlSuffixProperties
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_8/classes.rb,
generated/google/apis/dfareporting_v2_8/representations.rb,
generated/google/apis/dfareporting_v2_8/representations.rb
Overview
Click Through URL Suffix settings.
Instance Attribute Summary collapse
-
#click_through_url_suffix ⇒ String
Click-through URL suffix to apply to all ads in this entity's scope.
-
#override_inherited_suffix ⇒ Boolean
(also: #override_inherited_suffix?)
Whether this entity should override the inherited click-through URL suffix with its own defined value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ClickThroughUrlSuffixProperties
constructor
A new instance of ClickThroughUrlSuffixProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ClickThroughUrlSuffixProperties
Returns a new instance of ClickThroughUrlSuffixProperties
2067 2068 2069 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2067 def initialize(**args) update!(**args) end |
Instance Attribute Details
#click_through_url_suffix ⇒ String
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
2058 2059 2060 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2058 def click_through_url_suffix @click_through_url_suffix end |
#override_inherited_suffix ⇒ Boolean Also known as: override_inherited_suffix?
Whether this entity should override the inherited click-through URL suffix
with its own defined value.
Corresponds to the JSON property overrideInheritedSuffix
2064 2065 2066 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2064 def override_inherited_suffix @override_inherited_suffix end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2072 2073 2074 2075 |
# File 'generated/google/apis/dfareporting_v2_8/classes.rb', line 2072 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 |