Browse Source

Add transactionIdentifer to PaymentTransaction

Andrea Bizzotto 8 years ago
parent
commit
5f72952934
1 changed files with 1 additions and 0 deletions
  1. 1 0
      SwiftyStoreKit/SwiftyStoreKit+Types.swift

+ 1 - 0
SwiftyStoreKit/SwiftyStoreKit+Types.swift

@@ -36,6 +36,7 @@ public struct Product {
 // Payment transaction
 // Payment transaction
 public protocol PaymentTransaction {
 public protocol PaymentTransaction {
     var transactionState: SKPaymentTransactionState { get }
     var transactionState: SKPaymentTransactionState { get }
+    var transactionIdentifier: String? { get }
 }
 }
 
 
 // Add PaymentTransaction conformance to SKPaymentTransaction
 // Add PaymentTransaction conformance to SKPaymentTransaction