zhizhi/node_modules/dingtalk-jsapi/api/biz/ATMBle/faceManager.d.ts

36 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 人脸识别管理组件,主要支持唤起组件对人脸开关设置,以及对录入的人脸进行管理 请求参数定义
* @apiName biz.ATMBle.faceManager
*/
export interface IBizATMBleFaceManagerParams {
/** 企业ID服务端会对权限做控制 */
corpId: string;
/** 人脸管理,用户ID列表List<Long>json格式 */
userIds?: string;
/** 人脸管理,排除的用户ID列表List<Long>json格式 */
excludeUserIds?: string;
/** 人脸管理,部门ID列表List<Long>json格式 */
deptIds?: string;
/** 人脸管理,排除的部门ID列表List<Long>json格式 */
excludeDeptIds?: string;
/** 人脸开关 */
switchValue?: boolean;
/** 扩展字段,先预留 */
extData?: string;
}
/**
* 人脸识别管理组件,主要支持唤起组件对人脸开关设置,以及对录入的人脸进行管理 返回结果定义
* @apiName biz.ATMBle.faceManager
*/
export interface IBizATMBleFaceManagerResult {
switchValue: boolean;
}
/**
* 人脸识别管理组件,主要支持唤起组件对人脸开关设置,以及对录入的人脸进行管理
* @apiName biz.ATMBle.faceManager
* @supportVersion ios: 5.0.7 android: 5.0.7
* @author Android:序望iOS度尽
*/
export declare function faceManager$(params: IBizATMBleFaceManagerParams): Promise<IBizATMBleFaceManagerResult>;
export default faceManager$;