Enum PurchaseFailReason
public enum PurchaseFailReason
Fields
PurchasingUnavailable
Purchasing may be disabled in security settings.
PurchasingUnavailable = 0
ExistingPurchasePending
Another purchase is already in progress.
ExistingPurchasePending = 1
ProductUnavailable
The product was reported unavailable by the purchasing system.
ProductUnavailable = 2
SignatureInvalid
Signature validation of the purchase's receipt failed.
SignatureInvalid = 3
UserCancelled
The user opted to cancel rather than proceed with the purchase. This is not specified on platforms that do not distinguish cancellation from other failure (Amazon, Microsoft).
UserCancelled = 4
PaymentDeclined
There was a problem with the payment. This is unique to Apple platforms.
PaymentDeclined = 5
DuplicateTransaction
The transaction has already been completed successfully. This error can occur on Apple platforms if the transaction is finished successfully while the user is logged out of the app store, using a receipt generated while the user was logged in.
DuplicateTransaction = 6
Unknown
A catch all for remaining purchase problems. Note: Use Enum.Parse to use this named constant if targeting Unity 5.3 or 5.4. Its value differs for 5.5+ which introduced DuplicateTransaction.
Unknown = 7