class Google::Apis::AnalyticsV3::AdWordsAccount
JSON template for an Google
Ads account.
Attributes
auto_tagging_enabled[RW]
True if auto-tagging is enabled on the Google
Ads 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 Google
Ads 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 a Google
Ads link. Corresponds to the JSON property `customerId` @return [String]
kind[RW]
Resource type for Google
Ads account. Corresponds to the JSON property `kind` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/analytics_v3/classes.rb, line 521 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/analytics_v3/classes.rb, line 526 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