/* tslint:disable */ /* eslint-disable */ /** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * Do not edit the class manually. * * Jellyfin API * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ import { HttpHeaderInfo } from './http-header-info'; /** * * @export * @interface DeviceIdentification */ export interface DeviceIdentification { /** * Gets or sets the name of the friendly. * @type {string} * @memberof DeviceIdentification */ 'FriendlyName'?: string; /** * Gets or sets the model number. * @type {string} * @memberof DeviceIdentification */ 'ModelNumber'?: string; /** * Gets or sets the serial number. * @type {string} * @memberof DeviceIdentification */ 'SerialNumber'?: string; /** * Gets or sets the name of the model. * @type {string} * @memberof DeviceIdentification */ 'ModelName'?: string; /** * Gets or sets the model description. * @type {string} * @memberof DeviceIdentification */ 'ModelDescription'?: string; /** * Gets or sets the model URL. * @type {string} * @memberof DeviceIdentification */ 'ModelUrl'?: string; /** * Gets or sets the manufacturer. * @type {string} * @memberof DeviceIdentification */ 'Manufacturer'?: string; /** * Gets or sets the manufacturer URL. * @type {string} * @memberof DeviceIdentification */ 'ManufacturerUrl'?: string; /** * Gets or sets the headers. * @type {Array} * @memberof DeviceIdentification */ 'Headers'?: Array; }