1
0

HydrawiseController.d.ts 900 B

12345678910111213141516171819202122
  1. /**
  2. * @author Martijn Dierckx
  3. */
  4. /** Class representing a Hydrawise controller */
  5. export declare class HydrawiseController {
  6. id: number;
  7. name: string;
  8. serialNumber: string;
  9. lastContactWithCloud: Date;
  10. status: string;
  11. /**
  12. * Create a new instance of a HydrawiseController
  13. * @param {object} options - Options object containing all parameters
  14. * @param {number} options.id - The unique identifier of the controller
  15. * @param {string} options.name - The name of the controller
  16. * @param {string} options.serialNumber - The serial number of the controller
  17. * @param {Date} options.lastContactWithCloud - The last date time the controller was able to contact/sync with the cloud
  18. * @param {string} options.status - The status as returned by the Hydrawise cloud
  19. */
  20. constructor(options: any);
  21. }
  22. //# sourceMappingURL=HydrawiseController.d.ts.map