homebridge-framework
Version:
Framework for easy creation of homebridge plugins.
26 lines (25 loc) • 610 B
TypeScript
/**
* Represents a container for accessory information that is added as an accessory information service to the accessory.
*/
export declare class AccessoryInformation {
/**
* Gets or sets the manufacturer.
*/
manufacturer: string | null;
/**
* Gets or sets the manufacturer.
*/
model: string | null;
/**
* Gets or sets the manufacturer.
*/
serialNumber: string | null;
/**
* Gets or sets the manufacturer.
*/
firmwareRevision: string | null;
/**
* Gets or sets the manufacturer.
*/
hardwareRevision: string | null;
}