31 lines
No EOL
860 B
C#
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; }
|
|
}
|
|
} |