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