Class: Google::Apis::DfareportingV2_7::LandingPage
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_7::LandingPage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_7/classes.rb,
generated/google/apis/dfareporting_v2_7/representations.rb,
generated/google/apis/dfareporting_v2_7/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 ⇒ Fixnum
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
6698 6699 6700 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 6698 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
6673 6674 6675 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 6673 def default @default end |
#id ⇒ Fixnum
ID of this landing page. This is a read-only, auto-generated field.
Corresponds to the JSON property id
6679 6680 6681 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 6679 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
6685 6686 6687 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 6685 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
6691 6692 6693 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 6691 def name @name end |
#url ⇒ String
URL of this landing page. This is a required field.
Corresponds to the JSON property url
6696 6697 6698 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 6696 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6703 6704 6705 6706 6707 6708 6709 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 6703 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 |