BRMerchantSource
Objective-C
enum BRMerchantSource : NSUInteger {}
Swift
enum BRMerchantSource : UInt, @unchecked Sendable
Represents a single method of identifying the merchant on the receipt
-
Declaration
Objective-C
BRMerchantSourcePhone = 1Swift
case phone = 1 -
Declaration
Objective-C
BRMerchantSourceStoreIdSwift
case storeId = 2 -
Declaration
Objective-C
BRMerchantSourceTaxIdSwift
case taxId = 3 -
Declaration
Objective-C
BRMerchantSourceAddressSwift
case address = 4 -
Text on receipt was matched against a list of known retailers
Declaration
Objective-C
BRMerchantSourceKnownListSwift
case knownList = 5 -
Text on receipt was matched to a retailer based on external name lookups
Declaration
Objective-C
BRMerchantSourceNameLookupSwift
case nameLookup = 6 -
Text on receipt was matched to a retailer based on external name lookups
Declaration
Objective-C
BRMerchantSourceLogoSwift
case logo = 7 -
Text on receipt matched common layout characteristics of merchant’s receipts
Declaration
Objective-C
BRMerchantSourceLayoutAnalysisSwift
case layoutAnalysis = 8
View on GitHub