BRAccountLinkingError
Objective-C
enum BRAccountLinkingError : NSUInteger {}
Swift
enum BRAccountLinkingError : UInt, @unchecked Sendable
-
Declaration
Objective-C
BRAccountLinkingErrorNone
Swift
case none = 0
-
An attempt was made to grab orders for all merchants or for a specific merchant, but no merchant accounts had been linked
Declaration
Objective-C
BRAccountLinkingErrorNoAccountsLinked
Swift
case noAccountsLinked = 1
-
An attempt was made to link a merchant, but the same had been linked already
Declaration
Objective-C
BRAccountLinkingErrorAccountLinkedAlready
Swift
case accountLinkedAlready = 2
-
Login encountered a scenario requiring manual user intervention (CAPTCHA, 2FA, etc)
Declaration
Objective-C
BRAccountLinkingErrorVerificationNeeded
Swift
case verificationNeeded = 3
-
The user successfully completed the authentication manually
Declaration
Objective-C
BRAccountLinkingErrorVerificationCompleted
Swift
case verificationCompleted = 4
-
The user cancelled the manual authentication
Declaration
Objective-C
BRAccountLinkingErrorVerificationCancelled
Swift
case verificationCancelled = 5
-
An attempt was made to grab orders from Amazon (legacy parser) but no Amazon credentials were found
Declaration
Objective-C
BRAccountLinkingErrorNoCredentials
Swift
case noCredentials = 6
-
An unexpected error occurred during login or parsing
Declaration
Objective-C
BRAccountLinkingErrorInternal
Swift
case `internal` = 7
-
The structure of the merchant’s website or data feed that was encountered during parsing was unexpected
Declaration
Objective-C
BRAccountLinkingErrorParsingFail
Swift
case parsingFail = 8
-
Login failed on the merchant’s site due to invalid credentials
Declaration
Objective-C
BRAccountLinkingErrorInvalidCredentials
Swift
case invalidCredentials = 9
-
An attempt was made to grab orders for a particular merchant but no linked account for that merchant was found
Declaration
Objective-C
BRAccountLinkingErrorRetailerNotFound
Swift
case retailerNotFound = 10
-
Invalid license or prodIntel key.
Please contact blinkreceipt@microblink.com to validate your key(s).
Declaration
Objective-C
BRAccountLinkingErrorInvalidKey
Swift
case invalidKey = 11
-
The operation was cancelled
Declaration
Objective-C
BRAccountLinkingErrorCancelled
Swift
case cancelled = 12
-
The feature is not available on your device
Declaration
Objective-C
BRAccountLinkingErrorFeatureNotAvailable
Swift
case featureNotAvailable = 13
-
Login failed on the merchant’s site
Declaration
Objective-C
BRAccountLinkingErrorAuthenticationFail
Swift
case authenticationFail = 14