SquareDash/Library/PackageCache/com.unity.purchasing@4.10.0/Runtime/Purchasing/Analytics/Models/AnalyticsTransactionReceipt.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

15 lines
416 B
C#

#if IAP_ANALYTICS_SERVICE_ENABLED || IAP_ANALYTICS_SERVICE_ENABLED_WITH_SERVICE_COMPONENT
using System;
using Unity.Services.Analytics;
namespace UnityEngine.Purchasing
{
class AnalyticsTransactionReceipt
{
public string transactionReceipt { get; set; }
public string transactionReceiptSignature { get; set; }
public TransactionServer? transactionServer { get; set; }
}
}
#endif