/* 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 { NameIdPair } from './name-id-pair'; import { NameValuePair } from './name-value-pair'; import { TunerChannelMapping } from './tuner-channel-mapping'; /** * Channel mapping options dto. * @export * @interface ChannelMappingOptionsDto */ export interface ChannelMappingOptionsDto { /** * Gets or sets list of tuner channels. * @type {Array} * @memberof ChannelMappingOptionsDto */ 'TunerChannels'?: Array; /** * Gets or sets list of provider channels. * @type {Array} * @memberof ChannelMappingOptionsDto */ 'ProviderChannels'?: Array; /** * Gets or sets list of mappings. * @type {Array} * @memberof ChannelMappingOptionsDto */ 'Mappings'?: Array; /** * Gets or sets provider name. * @type {string} * @memberof ChannelMappingOptionsDto */ 'ProviderName'?: string | null; }