MrShi
9 天以前 7c93550a244fcc74678344628c229b42438c729f
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
export declare const apiName = "internal.ATMBle.beaconPickResult";
/**
 * B1设备选择器选择结果,只对一方,通过该接口与对外开放接口进行通信 请求参数定义
 * @apiName internal.ATMBle.beaconPickResult
 */
export interface IInternalATMBleBeaconPickResultParams {
    /** 调用biz.ATMBle.beaconPicker时生成的callbackId,用于传递结果 */
    callbackId: string;
    /** 选择结果,json对象,数据结构如下 */
    pickResult: {
        /** 选择的设备ID列表 */
        chosenBeacons: number[];
        /** 人脸识别开关 */
        useFaceRecognition: boolean;
        /** 设置的蓝牙设备距离 */
        distance: number;
    };
}
/**
 * B1设备选择器选择结果,只对一方,通过该接口与对外开放接口进行通信 返回结果定义
 * @apiName internal.ATMBle.beaconPickResult
 */
export interface IInternalATMBleBeaconPickResultResult {
}
/**
 * B1设备选择器选择结果,只对一方,通过该接口与对外开放接口进行通信
 * @apiName internal.ATMBle.beaconPickResult
 * @supportVersion ios: 5.0.7 android: 5.0.7
 * @author Android:序望,iOS:度尽
 */
export declare function beaconPickResult$(params: IInternalATMBleBeaconPickResultParams): Promise<IInternalATMBleBeaconPickResultResult>;
export default beaconPickResult$;