BRAccountLinkingError
Objective-C
enum BRAccountLinkingError : NSUInteger {}
Swift
enum BRAccountLinkingError : UInt, @unchecked Sendable
-
Declaration
Objective-C
BRAccountLinkingErrorNoneSwift
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
BRAccountLinkingErrorNoAccountsLinkedSwift
case noAccountsLinked = 1 -
An attempt was made to link a merchant, but the same had been linked already
Declaration
Objective-C
BRAccountLinkingErrorAccountLinkedAlreadySwift
case accountLinkedAlready = 2 -
Login encountered a scenario requiring manual user intervention (CAPTCHA, 2FA, etc)
Declaration
Objective-C
BRAccountLinkingErrorVerificationNeededSwift
case verificationNeeded = 3 -
The user successfully completed the authentication manually
Declaration
Objective-C
BRAccountLinkingErrorVerificationCompletedSwift
case verificationCompleted = 4 -
The user cancelled the manual authentication
Declaration
Objective-C
BRAccountLinkingErrorVerificationCancelledSwift
case verificationCancelled = 5 -
An attempt was made to grab orders from Amazon (legacy parser) but no Amazon credentials were found
Declaration
Objective-C
BRAccountLinkingErrorNoCredentialsSwift
case noCredentials = 6 -
An unexpected error occurred during login or parsing
Declaration
Objective-C
BRAccountLinkingErrorInternalSwift
case `internal` = 7 -
The structure of the merchant’s website or data feed that was encountered during parsing was unexpected
Declaration
Objective-C
BRAccountLinkingErrorParsingFailSwift
case parsingFail = 8 -
Login failed on the merchant’s site due to invalid credentials
Declaration
Objective-C
BRAccountLinkingErrorInvalidCredentialsSwift
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
BRAccountLinkingErrorRetailerNotFoundSwift
case retailerNotFound = 10 -
Invalid license or prodIntel key.
Please contact blinkreceipt@microblink.com to validate your key(s).
Declaration
Objective-C
BRAccountLinkingErrorInvalidKeySwift
case invalidKey = 11 -
The operation was cancelled
Declaration
Objective-C
BRAccountLinkingErrorCancelledSwift
case cancelled = 12 -
The feature is not available on your device
Declaration
Objective-C
BRAccountLinkingErrorFeatureNotAvailableSwift
case featureNotAvailable = 13 -
Login failed on the merchant’s site
Declaration
Objective-C
BRAccountLinkingErrorAuthenticationFailSwift
case authenticationFail = 14 -
Authentication failed due to WebView being terminated by user
Declaration
Objective-C
BRAccountLinkingErrorWebViewClosedSwift
case webViewClosed = 15 -
This retailer is not currently supported
Declaration
Objective-C
BRAccountLinkingErrorUnsupportedRetailerSwift
case unsupportedRetailer = 16
View on GitHub