Class: Google::Apis::DfareportingV2_7::LandingPage

Inherits:
Object
  • Object
show all
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

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



6705
6706
6707
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 6705

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)


6680
6681
6682
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 6680

def default
  @default
end

#idFixnum

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

Returns:

  • (Fixnum)


6686
6687
6688
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 6686

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)


6692
6693
6694
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 6692

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)


6698
6699
6700
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 6698

def name
  @name
end

#urlString

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

Returns:

  • (String)


6703
6704
6705
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 6703

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6710
6711
6712
6713
6714
6715
6716
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 6710

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