class Google::Apis::AnalyticsV3::AdWordsAccount
JSON template for an AdWords account.
Attributes
auto_tagging_enabled[RW]
True if auto-tagging is enabled on the AdWords account. Read-only after the insert operation. Corresponds to the JSON property `autoTaggingEnabled` @return [Boolean]
auto_tagging_enabled?[RW]
True if auto-tagging is enabled on the AdWords account. Read-only after the insert operation. Corresponds to the JSON property `autoTaggingEnabled` @return [Boolean]
customer_id[RW]
Customer ID. This field is required when creating an AdWords link. Corresponds to the JSON property `customerId` @return [String]
kind[RW]
Resource type for AdWords account. Corresponds to the JSON property `kind` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/analytics_v3/classes.rb, line 431 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/analytics_v3/classes.rb, line 436 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