Class: Google::Apis::FirebasedynamiclinksV1::GooglePlayAnalytics

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GooglePlayAnalytics

Returns a new instance of GooglePlayAnalytics



801
802
803
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 801

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#gclidString

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

Returns:

  • (String)


771
772
773
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 771

def gclid
  @gclid
end

#utm_campaignString

Campaign name; used for keyword analysis to identify a specific product promotion or strategic campaign. Corresponds to the JSON property utmCampaign

Returns:

  • (String)


777
778
779
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 777

def utm_campaign
  @utm_campaign
end

#utm_contentString

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

Returns:

  • (String)


783
784
785
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 783

def utm_content
  @utm_content
end

#utm_mediumString

Campaign medium; used to identify a medium such as email or cost-per-click. Corresponds to the JSON property utmMedium

Returns:

  • (String)


788
789
790
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 788

def utm_medium
  @utm_medium
end

#utm_sourceString

Campaign source; used to identify a search engine, newsletter, or other source. Corresponds to the JSON property utmSource

Returns:

  • (String)


794
795
796
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 794

def utm_source
  @utm_source
end

#utm_termString

Campaign term; used with paid search to supply the keywords for ads. Corresponds to the JSON property utmTerm

Returns:

  • (String)


799
800
801
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 799

def utm_term
  @utm_term
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



806
807
808
809
810
811
812
813
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 806

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