MrShi
8 天以前 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
/**
 * 专属包实时定位任务状态查询 请求参数定义
 * @apiName biz.realm.getRealtimeTracingStatus
 */
export interface IBizRealmGetRealtimeTracingStatusParams {
}
/**
 * 专属包实时定位任务状态查询 返回结果定义
 * @apiName biz.realm.getRealtimeTracingStatus
 */
export interface IBizRealmGetRealtimeTracingStatusResult {
    /** 巡检任务状态 */
    isTraceRunning: boolean;
    /** 巡检位置数据上报周期 */
    reportPeriod: number;
    /** 巡检位置数据获取周期 */
    collectPeriod: number;
}
/**
 * 专属包实时定位任务状态查询
 * @apiName biz.realm.getRealtimeTracingStatus
 * @supportVersion android: 6.0.13
 * @author Android:晤歌
 */
export declare function getRealtimeTracingStatus$(params: IBizRealmGetRealtimeTracingStatusParams): Promise<IBizRealmGetRealtimeTracingStatusResult>;
export default getRealtimeTracingStatus$;