Class: Google::Apis::FirebasedynamiclinksV1::ITunesConnectAnalytics

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 iTunes Connect App Analytics.

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) ⇒ ITunesConnectAnalytics

Returns a new instance of ITunesConnectAnalytics.



876
877
878
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 876

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

Instance Attribute Details

#atString

Affiliate token used to create affiliate-coded links. Corresponds to the JSON property at

Returns:

  • (String)


857
858
859
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 857

def at
  @at
end

#ctString

Campaign text that developers can optionally add to any link in order to track sales from a specific marketing campaign. Corresponds to the JSON property ct

Returns:

  • (String)


863
864
865
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 863

def ct
  @ct
end

#mtString

iTune media types, including music, podcasts, audiobooks and so on. Corresponds to the JSON property mt

Returns:

  • (String)


868
869
870
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 868

def mt
  @mt
end

#ptString

Provider token that enables analytics for Dynamic Links from within iTunes Connect. Corresponds to the JSON property pt

Returns:

  • (String)


874
875
876
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 874

def pt
  @pt
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



881
882
883
884
885
886
# File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 881

def update!(**args)
  @at = args[:at] if args.key?(:at)
  @ct = args[:ct] if args.key?(:ct)
  @mt = args[:mt] if args.key?(:mt)
  @pt = args[:pt] if args.key?(:pt)
end