ChipDna Mobile
Loading...
Searching...
No Matches
CCCardHash.h
1
7#import <Foundation/Foundation.h>
8
14typedef NS_ENUM(NSUInteger, CCCardHashSource) {
15 CCCardHashSourceUnknown,
16 CCCardHashSourcePlatform,
17 CCCardHashSourcePaymentDevice,
18};
19
25typedef NS_ENUM(NSUInteger, CCCardHashScope) {
26 CCCardHashScopeUnknown = 0x00,
27 CCCardHashScopeTerminal = 0x01,
28 CCCardHashScopeTerminalGroup = 0x02,
29 CCCardHashScopeMerchant = 0x03,
30 CCCardHashScopeClient = 0x04,
31 CCCardHashScopeProcessor = 0x05,
32 CCCardHashScopeTerritory = 0x06,
33 CCCardHashScopePaymentDeviceModel = 0x07,
34 CCCardHashScopePaymentDeviceManufacturer = 0x08,
35 CCCardHashScopeTokenPaymentCompatible = 0x09,
36 CCCardHashScopePlatform = 0x10
37};
38
39@interface CCCardHash : NSObject
40
46@property (readonly)CCCardHashScope scope;
52@property (readonly)CCCardHashSource source;
53
59@property (readonly)NSString *value;
60@end
Contains data representing information about a generated card hash.
Definition: CCCardHash.h:40
NSString * value
Definition: CCCardHash.h:59
CCCardHashScope scope
Definition: CCCardHash.h:46
CCCardHashSource source
Definition: CCCardHash.h:52