
/**
 * 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;
}
