Browse Source

Add transactionDate to PaymentTransaction

Andrea Bizzotto 7 years ago
parent
commit
246393462a
1 changed files with 1 additions and 0 deletions
  1. 1 0
      SwiftyStoreKit/SwiftyStoreKit+Types.swift

+ 1 - 0
SwiftyStoreKit/SwiftyStoreKit+Types.swift

@@ -50,6 +50,7 @@ public protocol ReceiptValidator {
 
 // Payment transaction
 public protocol PaymentTransaction {
+    var transactionDate: Date? { get }
     var transactionState: SKPaymentTransactionState { get }
     var transactionIdentifier: String? { get }
 }