MrShi
7 天以前 97158794d69fd2beee1bf27577aa7cadea8d847d
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.getEndorseModelWithSecret";
/**
 * 根据Secret在App端计算加签信息 请求参数定义
 * @apiName internal.blebusiness.getEndorseModelWithSecret
 */
export interface IInternalBlebusinessGetEndorseModelWithSecretParams {
    /** 加密信息 */
    secret: string;
    /** 蓝牙广播信息major属性 */
    major: number;
    /** 蓝牙广播信息minor属性 */
    minor: number;
}
/**
 * 根据Secret在App端计算加签信息 返回结果定义
 * @apiName internal.blebusiness.getEndorseModelWithSecret
 */
export interface IInternalBlebusinessGetEndorseModelWithSecretResult {
    /** DTEndorseModel的JSON字符串 */
    endorseModel: string;
}
/**
 * 根据Secret在App端计算加签信息
 * @apiName internal.blebusiness.getEndorseModelWithSecret
 * @supportVersion ios: 4.6.18 android: 4.6.18
 */
export declare function getEndorseModelWithSecret$(params: IInternalBlebusinessGetEndorseModelWithSecretParams): Promise<IInternalBlebusinessGetEndorseModelWithSecretResult>;
export default getEndorseModelWithSecret$;