AnalyticsTransactionReceipt.cs 319 B

123456789101112
  1. using System;
  2. using Unity.Services.Analytics;
  3. namespace UnityEngine.Purchasing
  4. {
  5. class AnalyticsTransactionReceipt
  6. {
  7. public string transactionReceipt { get; set; }
  8. public string transactionReceiptSignature { get; set; }
  9. public TransactionServer? transactionServer { get; set; }
  10. }
  11. }