homebridge-framework
Version:
Framework for easy creation of homebridge plugins.
32 lines (31 loc) • 898 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Represents a container for accessory information that is added as an accessory information service to the accessory.
*/
var AccessoryInformation = /** @class */ (function () {
function AccessoryInformation() {
/**
* Gets or sets the manufacturer.
*/
this.manufacturer = null;
/**
* Gets or sets the manufacturer.
*/
this.model = null;
/**
* Gets or sets the manufacturer.
*/
this.serialNumber = null;
/**
* Gets or sets the manufacturer.
*/
this.firmwareRevision = null;
/**
* Gets or sets the manufacturer.
*/
this.hardwareRevision = null;
}
return AccessoryInformation;
}());
exports.AccessoryInformation = AccessoryInformation;