Class: Google::Apis::DfareportingV2_3::LandingPage
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_3::LandingPage
- 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
Contains information about where a user's browser is taken after the user clicks an ad.
Instance Attribute Summary collapse
-
#default ⇒ Boolean
(also: #default?)
Whether or not this landing page will be assigned to any ads or creatives that do not have a landing page assigned explicitly.
-
#id ⇒ String
ID of this landing page.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#name ⇒ String
Name of this landing page.
-
#url ⇒ String
URL of this landing page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LandingPage
constructor
A new instance of LandingPage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LandingPage
Returns a new instance of LandingPage.
6157 6158 6159 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6157 def initialize(**args) update!(**args) end |
Instance Attribute Details
#default ⇒ Boolean Also known as: default?
Whether or not this landing page will be assigned to any ads or creatives that
do not have a landing page assigned explicitly. Only one default landing page
is allowed per campaign.
Corresponds to the JSON property default
6132 6133 6134 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6132 def default @default end |
#id ⇒ String
ID of this landing page. This is a read-only, auto-generated field.
Corresponds to the JSON property id
6138 6139 6140 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6138 def id @id end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#landingPage".
Corresponds to the JSON property kind
6144 6145 6146 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6144 def kind @kind end |
#name ⇒ String
Name of this landing page. This is a required field. It must be less than 256
characters long, and must be unique among landing pages of the same campaign.
Corresponds to the JSON property name
6150 6151 6152 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6150 def name @name end |
#url ⇒ String
URL of this landing page. This is a required field.
Corresponds to the JSON property url
6155 6156 6157 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6155 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6162 6163 6164 6165 6166 6167 6168 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 6162 def update!(**args) @default = args[:default] if args.key?(:default) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @url = args[:url] if args.key?(:url) end |