Class: Google::Apis::AnalyticsV3::AdWordsAccount
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AnalyticsV3::AdWordsAccount
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/analytics_v3/classes.rb,
 generated/google/apis/analytics_v3/representations.rb,
 generated/google/apis/analytics_v3/representations.rb
Overview
JSON template for an AdWords account.
Instance Attribute Summary collapse
- 
  
    
      #auto_tagging_enabled  ⇒ Boolean 
    
    
      (also: #auto_tagging_enabled?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    True if auto-tagging is enabled on the AdWords account. 
- 
  
    
      #customer_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Customer ID. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Resource type for AdWords account. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AdWordsAccount 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of AdWordsAccount. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AdWordsAccount
Returns a new instance of AdWordsAccount
| 615 616 617 | # File 'generated/google/apis/analytics_v3/classes.rb', line 615 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#auto_tagging_enabled ⇒ Boolean Also known as: auto_tagging_enabled?
True if auto-tagging is enabled on the AdWords account. Read-only after the
insert operation.
Corresponds to the JSON property autoTaggingEnabled
| 602 603 604 | # File 'generated/google/apis/analytics_v3/classes.rb', line 602 def auto_tagging_enabled @auto_tagging_enabled end | 
#customer_id ⇒ String
Customer ID. This field is required when creating an AdWords link.
Corresponds to the JSON property customerId
| 608 609 610 | # File 'generated/google/apis/analytics_v3/classes.rb', line 608 def customer_id @customer_id end | 
#kind ⇒ String
Resource type for AdWords account.
Corresponds to the JSON property kind
| 613 614 615 | # File 'generated/google/apis/analytics_v3/classes.rb', line 613 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 620 621 622 623 624 | # File 'generated/google/apis/analytics_v3/classes.rb', line 620 def update!(**args) @auto_tagging_enabled = args[:auto_tagging_enabled] if args.key?(:auto_tagging_enabled) @customer_id = args[:customer_id] if args.key?(:customer_id) @kind = args[:kind] if args.key?(:kind) end |