Class: Google::Apis::DfareportingV3_0::LandingPage
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DfareportingV3_0::LandingPage
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_0/classes.rb,
 generated/google/apis/dfareporting_v3_0/representations.rb,
 generated/google/apis/dfareporting_v3_0/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. 
- 
  
    
      #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
| 6908 6909 6910 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 6908 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
| 6878 6879 6880 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 6878 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
| 6883 6884 6885 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 6883 def archived @archived end | 
#id ⇒ Fixnum
ID of this landing page. This is a read-only, auto-generated field.
Corresponds to the JSON property id
| 6889 6890 6891 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 6889 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
| 6895 6896 6897 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 6895 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
| 6901 6902 6903 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 6901 def name @name end | 
#url ⇒ String
URL of this landing page. This is a required field.
Corresponds to the JSON property url
| 6906 6907 6908 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 6906 def url @url end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 6913 6914 6915 6916 6917 6918 6919 6920 | # File 'generated/google/apis/dfareporting_v3_0/classes.rb', line 6913 def update!(**args) @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id) @archived = args[:archived] if args.key?(:archived) @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 |