class Google::Apis::AnalyticsV3::EntityAdWordsLink
JSON template for Analytics Entity AdWords Link.
Attributes
A list of AdWords client accounts. These cannot be MCC accounts. This field is required when creating an AdWords link. It cannot be empty. Corresponds to the JSON property `adWordsAccounts` @return [Array<Google::Apis::AnalyticsV3::AdWordsAccount>]
Web property being linked. Corresponds to the JSON property `entity` @return [Google::Apis::AnalyticsV3::EntityAdWordsLink::Entity]
Entity AdWords link ID Corresponds to the JSON property `id` @return [String]
Resource type for entity AdWords link. Corresponds to the JSON property `kind` @return [String]
Name of the link. This field is required when creating an AdWords link. Corresponds to the JSON property `name` @return [String]
IDs of linked Views (Profiles) represented as strings. Corresponds to the JSON property `profileIds` @return [Array<String>]
Public Class Methods
# File generated/google/apis/analytics_v3/classes.rb, line 1184 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/analytics_v3/classes.rb, line 1189 def update!(**args) @ad_words_accounts = args[:ad_words_accounts] if args.key?(:ad_words_accounts) @entity = args[:entity] if args.key?(:entity) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @profile_ids = args[:profile_ids] if args.key?(:profile_ids) @self_link = args[:self_link] if args.key?(:self_link) end