洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
632 B

7 months ago
  1. //
  2. // DTFMutableSetting.h
  3. // BioAuthEngine
  4. //
  5. // Created by richard on 24/02/2018.
  6. // Copyright © 2018 DTF. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface DTFMutableSetting : NSObject
  10. + (instancetype)getInstance;
  11. - (NSString *)gatewayURL;
  12. - (NSDictionary *)headConfig;
  13. - (NSString *)DTFInitRequestOperationType;
  14. - (NSString *)validateRequestOperationType;
  15. - (NSString *)SMSVerifyRequestOperationType;
  16. - (NSString *)SMSCodeRequestOperationType;
  17. - (NSString *)zimOCRIdentifyRequestOperationType;
  18. - (NSString *)bioAuthEngineVersion;
  19. - (NSString *)onlinePubKey;
  20. - (NSString *)testPubKey;
  21. @end