zhizhi/node_modules/dingtalk-jsapi/api/biz/iot/getDeviceProperties.d.ts

26 lines
811 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 智能硬获取设备属性 请求参数定义
* @apiName biz.iot.getDeviceProperties
*/
export interface IBizIotGetDevicePropertiesParams {
/** 设备的id */
deviceId: string;
/** 设备所在的server id产品id */
devServerId: string;
}
/**
* 智能硬获取设备属性 返回结果定义
* @apiName biz.iot.getDeviceProperties
*/
export interface IBizIotGetDevicePropertiesResult {
/** 设置属性集合的json string(为属性的key, value集合) */
property: string;
}
/**
* 智能硬获取设备属性
* @apiName biz.iot.getDeviceProperties
* @supportVersion ios: 4.6.42 android: 4.6.42
*/
export declare function getDeviceProperties$(params: IBizIotGetDevicePropertiesParams): Promise<IBizIotGetDevicePropertiesResult>;
export default getDeviceProperties$;