Class: Google::Apis::DfareportingV3_2::LandingPage
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_2::LandingPage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_2/classes.rb,
generated/google/apis/dfareporting_v3_2/representations.rb,
generated/google/apis/dfareporting_v3_2/representations.rb
Overview
Contains information about where a user's browser is taken after the user clicks an ad.
Instance Attribute Summary collapse
-
#advertiser_id ⇒ Fixnum
Advertiser ID of this landing page.
-
#archived ⇒ Boolean
(also: #archived?)
Whether this landing page has been archived.
-
#deep_links ⇒ Array<Google::Apis::DfareportingV3_2::DeepLink>
Links that will direct the user to a mobile app, if installed.
-
#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
7004 7005 7006 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 7004 def initialize(**args) update!(**args) end |
Instance Attribute Details
#advertiser_id ⇒ Fixnum
Advertiser ID of this landing page. This is a required field.
Corresponds to the JSON property advertiserId
6969 6970 6971 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 6969 def advertiser_id @advertiser_id end |
#archived ⇒ Boolean Also known as: archived?
Whether this landing page has been archived.
Corresponds to the JSON property archived
6974 6975 6976 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 6974 def archived @archived end |
#deep_links ⇒ Array<Google::Apis::DfareportingV3_2::DeepLink>
Links that will direct the user to a mobile app, if installed.
Corresponds to the JSON property deepLinks
6980 6981 6982 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 6980 def deep_links @deep_links end |
#id ⇒ Fixnum
ID of this landing page. This is a read-only, auto-generated field.
Corresponds to the JSON property id
6985 6986 6987 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 6985 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
6991 6992 6993 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 6991 def kind @kind end |
#name ⇒ String
Name of this landing page. This is a required field. It must be less than 256
characters long.
Corresponds to the JSON property name
6997 6998 6999 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 6997 def name @name end |
#url ⇒ String
URL of this landing page. This is a required field.
Corresponds to the JSON property url
7002 7003 7004 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 7002 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7009 7010 7011 7012 7013 7014 7015 7016 7017 |
# File 'generated/google/apis/dfareporting_v3_2/classes.rb', line 7009 def update!(**args) @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id) @archived = args[:archived] if args.key?(:archived) @deep_links = args[:deep_links] if args.key?(:deep_links) @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 |