12345678910111213141516171819202122232425262728293031 |
- //
- // DTFConstant.h
- // DTFIdentityManager
- //
- // Created by mengbingchuan on 2022/11/24.
- // Copyright © 2022 DTF. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- //ext params keys
- extern NSString *const kZIMInitOperationTypeKey; //init operation type
- extern NSString *const kZIMValidateOperationTypeKey; //validate operation type
- extern NSString *const kZIMGatewayURLKey; //rpc gateway url
- extern NSString *const kZIMRpcHeaderKey; //ext rpc header
- extern NSString *const kZIMCurrentViewControllerKey; // current view controller
- extern NSString *const kZIMViewProviderKey;
- extern NSString *const kZIMFastUploadKey;
- extern NSString *const kZIMBisProtocolKey;
- extern NSString *const kZIMResponseKey;
- extern NSString *const kZIMValidateResponseKey;
- extern NSString *const kZIMCertNoKey;
- extern NSString *const kZIMCertNameKey;
- extern NSString *const ZIM_EXT_PARAMS_KEY_OCR_BOTTOM_BUTTON_COLOR; //设置颜色的值,值内容为:#FFFFFF 格式,必须为6位
- extern NSString *const ZIM_EXT_PARAMS_KEY_OCR_BOTTOM_BUTTON_CLICKED_COLOR; //设置按钮点击颜色的值,值内容为:#FFFFFF 格式 ,必须为6位
- extern NSString *const ZIM_EXT_PARAMS_KEY_USE_VIDEO; //返回本地视频的key
- extern NSString *const ZIM_EXT_PARAMS_KEY_OCR_FACE_CIRCLE_COLOR;
- extern NSString *const ZIM_EXT_PARAMS_KEY_USE_VIDEO_UPLOAD; //返回本地视频上传到服务端的key
- extern NSString *const ZIM_EXT_PARAMS_KEY_MODEL_FILE_PATH; //设置文件路径
- extern NSString *const ZIM_EXT_PARAMS_KEY_ACTIVITYINDICATOR_COLOR;
- extern NSString *const ZIM_EXT_PARAMS_KEY_PRELOAD_MODEL_URL;
|