Package apple.storekit.enums
Class SKPaymentTransactionState
- java.lang.Object
-
- apple.storekit.enums.SKPaymentTransactionState
-
public final class SKPaymentTransactionState extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static longDeferredThe transaction is in the queue, but its final status is pending external action.static longFailedTransaction was cancelled or failed before being added to the server queue.static longPurchasedTransaction is in queue, user has been charged.static longPurchasingTransaction is being added to the server queue.static longRestoredTransaction was restored from user's purchase history.
-
-
-
Field Detail
-
Purchasing
public static final long Purchasing
Transaction is being added to the server queue.- See Also:
- Constant Field Values
-
Purchased
public static final long Purchased
Transaction is in queue, user has been charged. Client should complete the transaction.- See Also:
- Constant Field Values
-
Failed
public static final long Failed
Transaction was cancelled or failed before being added to the server queue.- See Also:
- Constant Field Values
-
Restored
public static final long Restored
Transaction was restored from user's purchase history. Client should complete the transaction.- See Also:
- Constant Field Values
-
Deferred
public static final long Deferred
The transaction is in the queue, but its final status is pending external action.- See Also:
- Constant Field Values
-
-