MrShi
9 天以前 cb94ff4f0a46eb74c21dd7b34b8d958ef9a9f11c
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
export declare const apiName = "internal.blebusiness.getDeviceInfo";
/**
 * 读取App端缓存的设备信息(如有必要再向服务端查询) 请求参数定义
 * @apiName internal.blebusiness.getDeviceInfo
 */
export interface IInternalBlebusinessGetDeviceInfoParams {
    /** (设备ID) */
    devId: string;
    /** 设备大类型 */
    devType: string;
    /** 设备小类型 */
    devServId: string;
}
/**
 * 读取App端缓存的设备信息(如有必要再向服务端查询) 返回结果定义
 * @apiName internal.blebusiness.getDeviceInfo
 */
export interface IInternalBlebusinessGetDeviceInfoResult {
    /** DTBizDeviceModel的JSON字符串 */
    deviceModel: string;
}
/**
 * 读取App端缓存的设备信息(如有必要再向服务端查询)
 * @apiName internal.blebusiness.getDeviceInfo
 * @supportVersion ios: 4.6.18
 */
export declare function getDeviceInfo$(params: IInternalBlebusinessGetDeviceInfoParams): Promise<IInternalBlebusinessGetDeviceInfoResult>;
export default getDeviceInfo$;