Playvoi/Assets/ShiroginSDK/ThirdPartySDKs/SDKs/AppsFlyer/AFPurchaseDetailsAndroid.cs
2025-10-30 22:48:16 +03:00

31 lines
No EOL
860 B
C#

namespace AppsFlyerSDK
{
public enum AFPurchaseType
{
Subscription = 0,
OneTimePurchase = 1
}
/// <summary>
//
/// </summary>
public class AFPurchaseDetailsAndroid
{
public AFPurchaseDetailsAndroid(AFPurchaseType type, string purchaseToken, string productId, string price,
string currency)
{
purchaseType = type;
this.purchaseToken = purchaseToken;
this.productId = productId;
this.price = price;
this.currency = currency;
}
public AFPurchaseType purchaseType { get; private set; }
public string purchaseToken { get; private set; }
public string productId { get; private set; }
public string price { get; private set; }
public string currency { get; private set; }
}
}