zhizhi/node_modules/dingtalk-jsapi/api/biz/pbp/startMatchRuleFromPartner.d.ts

69 lines
3.0 KiB
TypeScript
Raw Normal View History

/**
* bizInstId的连续多次调用stop上一次操作
* @apiName biz.pbp.startMatchRuleFromPartner
*/
export interface IBizPbpStartMatchRuleFromPartnerParams {
/** 业务实例唯一标识 */
bizInstId: string;
/** key:positionType
* "1":
* "2":Wi-Fi
* "101":
* value:positionList:
* id
* String positionId
*
* key为"101"value为蓝牙匹配规则的JSON结构体
*
* {
* "101":{"positions": [{"positionId":"123123"}, {"positionId":"123123123"}]}
* }
**/
positionMap: {
[key: string]: any;
};
}
/**
* bizInstId的连续多次调用stop上一次操作
* @apiName biz.pbp.startMatchRuleFromPartner
*/
export interface IBizPbpStartMatchRuleFromPartnerResult {
/**
*
* "10000":
* "10001":
* "10002":
**/
code: string;
/**
*
* ID
* 1: string positionSessionId
* // 位置类型,"101" 为蓝牙
* 2: string positionType
* // 当前返回的位置信息,"positionName"为位置名称,"positionId"为位置ID
* 3: list<Object> positions
* // 预留字段
* 4: map<string, string> extension
*
*
* {
* "positionSessionId":"positionSessionId",
* "positionType":"101",
* "positions":[{
* "positionName":"测试B1",
* "positionId":"123123"
* }]
* }
*/
data: any;
}
/**
* bizInstId的连续多次调用stop上一次操作
* @apiName biz.pbp.startMatchRuleFromPartner
* @supportVersion ios: 5.1.10 android: 5.1.10
* @author AndroidiOS
*/
export declare function startMatchRuleFromPartner$(params: IBizPbpStartMatchRuleFromPartnerParams): Promise<IBizPbpStartMatchRuleFromPartnerResult>;
export default startMatchRuleFromPartner$;