OPApplePayStatus
@objc
public enum OPApplePayStatus : Int, CustomStringConvertible
                An enum representing the status of an Apple Pay payment requested from the user.
- 
                  
                  
The payment succeeded.
Declaration
Swift
case success - 
                  
                  
The payment failed due to an unforeseen error, such as the user’s Internet connection being offline.
Declaration
Swift
case error - 
                  
                  
The user cancelled the payment (for example, by hitting “cancel” in the Apple Pay dialog).
Declaration
Swift
case userCancellation - 
                  
                  
The payment took too long and was canceled by Apple
Declaration
Swift
case timeout - 
                  
                  
A string representation of this enum
Declaration
Swift
public var description: String { get }