setDeviceProperties.d.ts 823 B

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