class Google::Apis::DfareportingV3_5::LandingPage

Contains information about where a user's browser is taken after the user clicks an ad.

Attributes

advertiser_id[RW]

Advertiser ID of this landing page. This is a required field. Corresponds to the JSON property `advertiserId` @return [Fixnum]

archived[RW]

Whether this landing page has been archived. Corresponds to the JSON property `archived` @return [Boolean]

archived?[RW]

Whether this landing page has been archived. Corresponds to the JSON property `archived` @return [Boolean]

id[RW]

ID of this landing page. This is a read-only, auto-generated field. Corresponds to the JSON property `id` @return [Fixnum]

kind[RW]

Identifies what kind of resource this is. Value: the fixed string “ dfareporting#landingPage”. Corresponds to the JSON property `kind` @return [String]

name[RW]

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[RW]

URL of this landing page. This is a required field. Corresponds to the JSON property `url` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dfareporting_v3_5/classes.rb, line 6895
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dfareporting_v3_5/classes.rb, line 6900
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