Class: Google::Apis::FirebasedynamiclinksV1::GooglePlayAnalytics
- Inherits:
-
Object
- Object
- Google::Apis::FirebasedynamiclinksV1::GooglePlayAnalytics
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/firebasedynamiclinks_v1/classes.rb,
generated/google/apis/firebasedynamiclinks_v1/representations.rb,
generated/google/apis/firebasedynamiclinks_v1/representations.rb
Overview
Parameters for Google Play Campaign Measurements. Learn more
Instance Attribute Summary collapse
-
#gclid ⇒ String
AdWords autotagging parameter; used to measure Google AdWords ads.
-
#utm_campaign ⇒ String
Campaign name; used for keyword analysis to identify a specific product promotion or strategic campaign.
-
#utm_content ⇒ String
Campaign content; used for A/B testing and content-targeted ads to differentiate ads or links that point to the same URL.
-
#utm_medium ⇒ String
Campaign medium; used to identify a medium such as email or cost-per-click.
-
#utm_source ⇒ String
Campaign source; used to identify a search engine, newsletter, or other source.
-
#utm_term ⇒ String
Campaign term; used with paid search to supply the keywords for ads.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePlayAnalytics
constructor
A new instance of GooglePlayAnalytics.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePlayAnalytics
Returns a new instance of GooglePlayAnalytics
697 698 699 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 697 def initialize(**args) update!(**args) end |
Instance Attribute Details
#gclid ⇒ String
AdWords autotagging parameter;
used to measure Google AdWords ads. This value is generated dynamically
and should never be modified.
Corresponds to the JSON property gclid
667 668 669 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 667 def gclid @gclid end |
#utm_campaign ⇒ String
Campaign name; used for keyword analysis to identify a specific product
promotion or strategic campaign.
Corresponds to the JSON property utmCampaign
673 674 675 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 673 def utm_campaign @utm_campaign end |
#utm_content ⇒ String
Campaign content; used for A/B testing and content-targeted ads to
differentiate ads or links that point to the same URL.
Corresponds to the JSON property utmContent
679 680 681 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 679 def utm_content @utm_content end |
#utm_medium ⇒ String
Campaign medium; used to identify a medium such as email or cost-per-click.
Corresponds to the JSON property utmMedium
684 685 686 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 684 def utm_medium @utm_medium end |
#utm_source ⇒ String
Campaign source; used to identify a search engine, newsletter, or other
source.
Corresponds to the JSON property utmSource
690 691 692 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 690 def utm_source @utm_source end |
#utm_term ⇒ String
Campaign term; used with paid search to supply the keywords for ads.
Corresponds to the JSON property utmTerm
695 696 697 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 695 def utm_term @utm_term end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
702 703 704 705 706 707 708 709 |
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 702 def update!(**args) @gclid = args[:gclid] if args.key?(:gclid) @utm_campaign = args[:utm_campaign] if args.key?(:utm_campaign) @utm_content = args[:utm_content] if args.key?(:utm_content) @utm_medium = args[:utm_medium] if args.key?(:utm_medium) @utm_source = args[:utm_source] if args.key?(:utm_source) @utm_term = args[:utm_term] if args.key?(:utm_term) end |