123456789101112131415161718192021222324252627282930313233343536 |
- //
- // DTFMutableSetting.h
- // BioAuthEngine
- //
- // Created by richard on 24/02/2018.
- // Copyright © 2018 DTF. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface DTFMutableSetting : NSObject
- + (instancetype)getInstance;
- - (NSString *)gatewayURL;
- - (NSDictionary *)headConfig;
- - (NSString *)DTFInitRequestOperationType;
- - (NSString *)validateRequestOperationType;
- - (NSString *)SMSVerifyRequestOperationType;
- - (NSString *)SMSCodeRequestOperationType;
- - (NSString *)zimOCRIdentifyRequestOperationType;
- - (NSString *)bioAuthEngineVersion;
- - (NSString *)onlinePubKey;
- - (NSString *)testPubKey;
- @end
|