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.

IPurchaseReceipt.cs 578B

12345678910111213141516171819202122232425
  1. using System;
  2. namespace UnityEngine.Purchasing.Security
  3. {
  4. /// <summary>
  5. /// Represents a parsed purchase receipt from a store.
  6. /// </summary>
  7. public interface IPurchaseReceipt
  8. {
  9. /// <summary>
  10. /// The ID of the transaction.
  11. /// </summary>
  12. string transactionID { get; }
  13. /// <summary>
  14. /// The ID of the product purchased.
  15. /// </summary>
  16. string productID { get; }
  17. /// <summary>
  18. /// The date fof the purchase.
  19. /// </summary>
  20. DateTime purchaseDate { get; }
  21. }
  22. }