UNPKG

homebridge-framework

Version:
32 lines (25 loc) 668 B
/** * Represents a container for accessory information that is added as an accessory information service to the accessory. */ export class AccessoryInformation { /** * Gets or sets the manufacturer. */ public manufacturer: string|null = null; /** * Gets or sets the manufacturer. */ public model: string|null = null; /** * Gets or sets the manufacturer. */ public serialNumber: string|null = null; /** * Gets or sets the manufacturer. */ public firmwareRevision: string|null = null; /** * Gets or sets the manufacturer. */ public hardwareRevision: string|null = null; }