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