STPPinStatus
Objective-C
enum STPPinStatus {}
Swift
enum STPPinStatus : UInt
An enum representing the success and error states of PIN management
-
The verification object was already redeemed
Declaration
Objective-C
STPPinSuccess
Swift
case success = 0
-
The verification object was already redeemed
Declaration
Objective-C
STPPinErrorVerificationAlreadyRedeemed
Swift
case errorVerificationAlreadyRedeemed = 1
-
The one-time code was incorrect
Declaration
Objective-C
STPPinErrorVerificationCodeIncorrect
Swift
case errorVerificationCodeIncorrect = 2
-
The verification object was expired
Declaration
Objective-C
STPPinErrorVerificationExpired
Swift
case errorVerificationExpired = 3
-
The verification object has been attempted too many times
Declaration
Objective-C
STPPinErrorVerificationTooManyAttempts
Swift
case errorVerificationTooManyAttempts = 4
-
An error occured while retrieving the ephemeral key
Declaration
Objective-C
STPPinEphemeralKeyError
Swift
case ephemeralKeyError = 5
-
An unknown error occured
Declaration
Objective-C
STPPinUnknownError
Swift
case unknownError = 6