homebridge-framework
Version:
Framework for easy creation of homebridge plugins.
32 lines (25 loc) • 668 B
text/typescript
/**
* 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;
}