MrShi
5 天以前 05aec1e9986fbe3e907259bb1a1396f129bd0fa1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
export declare const apiName = "internal.ATMBle.updateBluetoothConfig";
/**
 * 蓝牙打卡各项配置变更同步jsapi 请求参数定义
 * @apiName internal.ATMBle.updateBluetoothConfig
 */
export interface IInternalATMBleUpdateBluetoothConfigParams {
    corpId: string;
    /**
     * 变更类型:
     * deviceBind, deviceUnbind, deviceBluetoothValue, deviceBluetoothCheckWithFace,
     * userBluetoothValue, userBluetoothCheckWay
     */
    updateType: string;
    /**
     * 变更数据json格式,对应updateType:
     * 变更数据json格式,对应updateType:
     * deviceBind:无
     * deviceUnbind:无
     * deviceBluetoothValue:
     * {
     *  "deviceUid":39843143,
     *  "bluetoothValue":true/false
     * }
     * deviceBluetoothCheckWithFace:
     * {
     * "deviceUid":39843143,
     * "checkWithFace":true/false
     * }
     * userBluetoothValue:
     * {
     * "bluetoothValue":true/false
     * }
     * userBluetoothCheckWay:
     * {
     * "bluetoothWay":"auto"/"manual"
     * }
     */
    data: string;
}
/**
 * 蓝牙打卡各项配置变更同步jsapi 返回结果定义
 * @apiName internal.ATMBle.updateBluetoothConfig
 */
export interface IInternalATMBleUpdateBluetoothConfigResult {
    [key: string]: any;
}
/**
 * 蓝牙打卡各项配置变更同步jsapi
 * @apiName internal.ATMBle.updateBluetoothConfig
 * @supportVersion android: 4.7.16
 * @author Android:序望,iOS:路客
 */
export declare function updateBluetoothConfig$(params: IInternalATMBleUpdateBluetoothConfigParams): Promise<IInternalATMBleUpdateBluetoothConfigResult>;
export default updateBluetoothConfig$;