unbind.d.ts 493 B

123456789101112131415161718192021
  1. /**
  2. * iot设备解绑 请求参数定义
  3. * @apiName biz.iot.unbind
  4. */
  5. export interface IBizIotUnbindParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * iot设备解绑 返回结果定义
  10. * @apiName biz.iot.unbind
  11. */
  12. export interface IBizIotUnbindResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * iot设备解绑
  17. * @apiName biz.iot.unbind
  18. * @supportVersion ios: 4.6.34 android: 4.6.34
  19. */
  20. export declare function unbind$(params: IBizIotUnbindParams): Promise<IBizIotUnbindResult>;
  21. export default unbind$;