Esempio n. 1
0
 /// <summary>
 /// Track an In App Purchase Event for iOS App Store.
 /// Tracks In App Purchases for later use with user segmentation and targeting.
 /// </summary>
 /// <param name="receipt">The transaction receipt used to validate the purchase.</param>
 /// <param name="productTitle">The localized title of the product.</param>
 /// <param name="productDescription">The localized description of the product.</param>
 /// <param name="productPrice">The price of the product.</param>
 /// <param name="productCurrency">The localized currency of the product.</param>
 /// <param name="productIdentifier">The IOS identifier for the product.</param>
 public static void trackInAppAppleStorePurchaseEvent(string receipt, string productTitle, string productDescription, string productPrice, string productCurrency, string productIdentifier)
 {
     CBExternal.trackInAppAppleStorePurchaseEvent(receipt, productTitle, productDescription, productPrice, productCurrency, productIdentifier);
 }