jellyfin-discord-bot/jellyfin/model/channelMappingOptionsDto.ts

68 lines
1.8 KiB
TypeScript
Raw Normal View History

2023-04-15 22:02:40 +02:00
/**
* 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<TunerChannelMapping>;
/**
* Gets or sets list of provider channels.
*/
'providerChannels'?: Array<NameIdPair>;
/**
* Gets or sets list of mappings.
*/
'mappings'?: Array<NameValuePair>;
/**
* 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<TunerChannelMapping>"
},
{
"name": "providerChannels",
"baseName": "ProviderChannels",
"type": "Array<NameIdPair>"
},
{
"name": "mappings",
"baseName": "Mappings",
"type": "Array<NameValuePair>"
},
{
"name": "providerName",
"baseName": "ProviderName",
"type": "string"
} ];
static getAttributeTypeMap() {
return ChannelMappingOptionsDto.attributeTypeMap;
}
}