class Google::Apis::DfareportingV3_3::LandingPage
Contains information about where a user's browser is taken after the user clicks an ad.
Attributes
Advertiser
ID of this landing page. This is a required field. Corresponds to the JSON property `advertiserId` @return [Fixnum]
Whether this landing page has been archived. Corresponds to the JSON property `archived` @return [Boolean]
Whether this landing page has been archived. Corresponds to the JSON property `archived` @return [Boolean]
Links that will direct the user to a mobile app, if installed. Corresponds to the JSON property `deepLinks` @return [Array<Google::Apis::DfareportingV3_3::DeepLink>]
ID of this landing page. This is a read-only, auto-generated field. Corresponds to the JSON property `id` @return [Fixnum]
Identifies what kind of resource this is. Value: the fixed string “ dfareporting#landingPage”. Corresponds to the JSON property `kind` @return [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` @return [String]
URL of this landing page. This is a required field. Corresponds to the JSON property `url` @return [String]
Public Class Methods
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 6724 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dfareporting_v3_3/classes.rb, line 6729 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