27 lines
No EOL
875 B
C#
27 lines
No EOL
875 B
C#
namespace AppsFlyerSDK
|
|
{
|
|
/// <summary>
|
|
//
|
|
/// </summary>
|
|
public class AFSDKPurchaseDetailsIOS
|
|
{
|
|
private AFSDKPurchaseDetailsIOS(string productId, string price, string currency, string transactionId)
|
|
{
|
|
this.productId = productId;
|
|
this.price = price;
|
|
this.currency = currency;
|
|
this.transactionId = transactionId;
|
|
}
|
|
|
|
public string productId { get; private set; }
|
|
public string price { get; private set; }
|
|
public string currency { get; private set; }
|
|
public string transactionId { get; private set; }
|
|
|
|
public static AFSDKPurchaseDetailsIOS Init(string productId, string price, string currency,
|
|
string transactionId)
|
|
{
|
|
return new AFSDKPurchaseDetailsIOS(productId, price, currency, transactionId);
|
|
}
|
|
}
|
|
} |