Beispiel #1
0
 public static void NewEvent(
     string currency,
     int amount,
     string itemType,
     string itemId,
     string cartType,
     IDictionary <string, object> fields)
 {
     GA_Wrapper.AddBusinessEvent(currency, amount, itemType, itemId, cartType, fields);
 }
 public static void NewEvent(string currency, int amount, string itemType, string itemId, string cartType, string receipt, bool autoFetchReceipt)
 {
     if (autoFetchReceipt)
     {
         GA_Wrapper.AddBusinessEventAndAutoFetchReceipt(currency, amount, itemType, itemId, cartType);
     }
     else
     {
         GA_Wrapper.AddBusinessEvent(currency, amount, itemType, itemId, cartType, receipt);
     }
 }
Beispiel #3
0
 public static void NewEvent(string currency, int amount, string itemType, string itemId, string cartType, string receipt, bool autoFetchReceipt, IDictionary <string, object> fields, bool mergeFields)
 {
     if (autoFetchReceipt)
     {
         GA_Wrapper.AddBusinessEventAndAutoFetchReceipt(currency, amount, itemType, itemId, cartType, fields, mergeFields);
     }
     else
     {
         GA_Wrapper.AddBusinessEvent(currency, amount, itemType, itemId, cartType, receipt, fields, mergeFields);
     }
 }
Beispiel #4
0
 // Token: 0x06000139 RID: 313 RVA: 0x0000A9AA File Offset: 0x00008DAA
 public static void NewEvent(string currency, int amount, string itemType, string itemId, string cartType)
 {
     GA_Wrapper.AddBusinessEvent(currency, amount, itemType, itemId, cartType);
 }