ChipDna Mobile
Loading...
Searching...
No Matches
Merchant.h
1
8#import <Foundation/Foundation.h>
10#import "Currency.h"
11
12@interface Merchant : NSObject
13
17@property(nonatomic, strong, readonly)NSArray<NSNumber *> *cardSchemes;
18
22@property(nonatomic, strong, readonly)NSArray<NSNumber *> *transactionTypes;
23
27@property(nonatomic, strong, readonly)NSArray<Currency *> *currencies;
28
32@property(nonatomic, strong, readonly)NSString *name;
33
37@property(nonatomic, strong, readonly)NSString *number;
38
42@property(nonatomic, strong, readonly)NSString *categoryCode;
43
44@end
45
Class representing information about a merchant.
Definition: Merchant.h:13
NSArray< Currency * > * currencies
Definition: Merchant.h:27
NSString * number
Definition: Merchant.h:37
NSString * name
Definition: Merchant.h:32
NSArray< NSNumber * > * transactionTypes
Definition: Merchant.h:22
NSString * categoryCode
Definition: Merchant.h:42
NSArray< NSNumber * > * cardSchemes
Definition: Merchant.h:17