BREReceiptRemoteError
Objective-C
enum BREReceiptRemoteError : NSUInteger {}
Swift
enum BREReceiptRemoteError : UInt, @unchecked Sendable
-
Declaration
Objective-C
BREReceiptRemoteErrorNone = 0Swift
case none = 0 -
Remote scrape was attempted but no providers have been linked
Declaration
Objective-C
BREReceiptRemoteErrorNoProvider = 1Swift
case noProvider = 1 -
Remote scrape was attempted with a provider that is not supported
Declaration
Objective-C
BREReceiptRemoteErrorInvalidProvider = 2Swift
case invalidProvider = 2 -
Remote scrape was attempted but no valid credentials were found on disk for the specified provider
Declaration
Objective-C
BREReceiptRemoteErrorNoCredentials = 3Swift
case noCredentials = 3 -
Remote scrape was attempted for an OAuth provider but a new access token could not be obtained
Declaration
Objective-C
BREReceiptRemoteErrorCantObtainToken = 4Swift
case cantObtainToken = 4 -
The supplied credentials failed to authenticate againt the specified provider server side
Declaration
Objective-C
BREReceiptRemoteErrorInvalidCredentials = 5Swift
case invalidCredentials = 5 -
For OAuth providers this indicates the access token has expired
Declaration
Objective-C
BREReceiptRemoteErrorExpiredToken = 6Swift
case expiredToken = 6 -
No client configuration for the remote scrape service was found server side
Declaration
Objective-C
BREReceiptRemoteErrorNoClientConfig = 7Swift
case noClientConfig = 7 -
Remote scrape worker could not locate all required parameters to initiate scrape (Unexpected)
Declaration
Objective-C
BREReceiptRemoteErrorBadInput = 8Swift
case badInput = 8 -
Remote scrape worker timed out trying to connect to email provider
Declaration
Objective-C
BREReceiptRemoteErrorTimeout = 9Swift
case timeout = 9 -
Remote scrape worker connected to IMAP account but found no mailboxes (Unexpected)
Declaration
Objective-C
BREReceiptRemoteErrorIMAPNoBoxes = 10Swift
case imapNoBoxes = 10 -
Indicates that one or more receipt IDs passed in to a reprocessing job was invalid (will not be returned client side)
Declaration
Objective-C
BREReceiptRemoteErrorInvalidReceiptIDs = 11Swift
case invalidReceiptIDs = 11 -
Indicates failure to connect to the results endpoint configured server side (will not be returned client side)
Declaration
Objective-C
BREReceiptRemoteErrorClientEndpointErrors = 12Swift
case clientEndpointErrors = 12 -
Could not queue up a remote scrape job because there is already one queued or in progress for this email address
Declaration
Objective-C
BREReceiptRemoteErrorJobInProgress = 13Swift
case jobInProgress = 13 -
Could not connect to or authenticate with the IMAP server
Declaration
Objective-C
BREReceiptRemoteErrorIMAPFailedConnection = 16Swift
case imapFailedConnection = 16 -
An unknown error was encountered attempting to queue up the remote scrape job
Declaration
Objective-C
BREReceiptRemoteErrorUnknown = 999Swift
case unknown = 999
View on GitHub