No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AnalyticsTransactionReceipt.cs 416B

1234567891011121314
  1. #if IAP_ANALYTICS_SERVICE_ENABLED || IAP_ANALYTICS_SERVICE_ENABLED_WITH_SERVICE_COMPONENT
  2. using System;
  3. using Unity.Services.Analytics;
  4. namespace UnityEngine.Purchasing
  5. {
  6. class AnalyticsTransactionReceipt
  7. {
  8. public string transactionReceipt { get; set; }
  9. public string transactionReceiptSignature { get; set; }
  10. public TransactionServer? transactionServer { get; set; }
  11. }
  12. }
  13. #endif