/** * Jellyfin API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 10.8.9 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { RequestFile } from './models'; import { NameIdPair } from './nameIdPair'; import { NameValuePair } from './nameValuePair'; import { TunerChannelMapping } from './tunerChannelMapping'; /** * Channel mapping options dto. */ export class ChannelMappingOptionsDto { /** * Gets or sets list of tuner channels. */ 'tunerChannels'?: Array; /** * Gets or sets list of provider channels. */ 'providerChannels'?: Array; /** * Gets or sets list of mappings. */ 'mappings'?: Array; /** * Gets or sets provider name. */ 'providerName'?: string | null; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "tunerChannels", "baseName": "TunerChannels", "type": "Array" }, { "name": "providerChannels", "baseName": "ProviderChannels", "type": "Array" }, { "name": "mappings", "baseName": "Mappings", "type": "Array" }, { "name": "providerName", "baseName": "ProviderName", "type": "string" } ]; static getAttributeTypeMap() { return ChannelMappingOptionsDto.attributeTypeMap; } }