Class: Google::Apis::DfareportingV2_6::LandingPage

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v2_6/classes.rb,
generated/google/apis/dfareporting_v2_6/representations.rb,
generated/google/apis/dfareporting_v2_6/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ LandingPage

Returns a new instance of LandingPage.



6644
6645
6646
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 6644

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#defaultBoolean 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

Returns:

  • (Boolean)


6619
6620
6621
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 6619

def default
  @default
end

#idString

ID of this landing page. This is a read-only, auto-generated field. Corresponds to the JSON property id

Returns:

  • (String)


6625
6626
6627
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 6625

def id
  @id
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#landingPage". Corresponds to the JSON property kind

Returns:

  • (String)


6631
6632
6633
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 6631

def kind
  @kind
end

#nameString

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

Returns:

  • (String)


6637
6638
6639
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 6637

def name
  @name
end

#urlString

URL of this landing page. This is a required field. Corresponds to the JSON property url

Returns:

  • (String)


6642
6643
6644
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 6642

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6649
6650
6651
6652
6653
6654
6655
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 6649

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