Class: Google::Apis::FirebasedynamiclinksV1::ITunesConnectAnalytics
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::FirebasedynamiclinksV1::ITunesConnectAnalytics
 
 
- 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
- 
  
    
      #at  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Affiliate token used to create affiliate-coded links.
 - 
  
    
      #ct  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Campaign text that developers can optionally add to any link in order to track sales from a specific marketing campaign.
 - 
  
    
      #mt  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
iTune media types, including music, podcasts, audiobooks and so on.
 - 
  
    
      #pt  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Provider token that enables analytics for Dynamic Links from within iTunes Connect.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ITunesConnectAnalytics 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ITunesConnectAnalytics.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ITunesConnectAnalytics
Returns a new instance of ITunesConnectAnalytics
      823 824 825  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 823 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#at ⇒ String
Affiliate token used to create affiliate-coded links.
Corresponds to the JSON property at
      804 805 806  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 804 def at @at end  | 
  
#ct ⇒ String
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
      810 811 812  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 810 def ct @ct end  | 
  
#mt ⇒ String
iTune media types, including music, podcasts, audiobooks and so on.
Corresponds to the JSON property mt
      815 816 817  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 815 def mt @mt end  | 
  
#pt ⇒ String
Provider token that enables analytics for Dynamic Links from within iTunes
Connect.
Corresponds to the JSON property pt
      821 822 823  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 821 def pt @pt end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      828 829 830 831 832 833  | 
    
      # File 'generated/google/apis/firebasedynamiclinks_v1/classes.rb', line 828 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  |