getDeviceProperties.d.ts 811 B

12345678910111213141516171819202122232425
  1. /**
  2. * 智能硬获取设备属性 请求参数定义
  3. * @apiName biz.iot.getDeviceProperties
  4. */
  5. export interface IBizIotGetDevicePropertiesParams {
  6. /** 设备的id */
  7. deviceId: string;
  8. /** 设备所在的server id,产品id */
  9. devServerId: string;
  10. }
  11. /**
  12. * 智能硬获取设备属性 返回结果定义
  13. * @apiName biz.iot.getDeviceProperties
  14. */
  15. export interface IBizIotGetDevicePropertiesResult {
  16. /** 设置属性集合的json string(为属性的key, value集合) */
  17. property: string;
  18. }
  19. /**
  20. * 智能硬获取设备属性
  21. * @apiName biz.iot.getDeviceProperties
  22. * @supportVersion ios: 4.6.42 android: 4.6.42
  23. */
  24. export declare function getDeviceProperties$(params: IBizIotGetDevicePropertiesParams): Promise<IBizIotGetDevicePropertiesResult>;
  25. export default getDeviceProperties$;