135 lines
3.6 KiB
TypeScript
135 lines
3.6 KiB
TypeScript
|
/**
|
||
|
* 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 { NameValuePair } from './nameValuePair';
|
||
|
|
||
|
export class ListingsProviderInfo {
|
||
|
'id'?: string | null;
|
||
|
'type'?: string | null;
|
||
|
'username'?: string | null;
|
||
|
'password'?: string | null;
|
||
|
'listingsId'?: string | null;
|
||
|
'zipCode'?: string | null;
|
||
|
'country'?: string | null;
|
||
|
'path'?: string | null;
|
||
|
'enabledTuners'?: Array<string> | null;
|
||
|
'enableAllTuners'?: boolean;
|
||
|
'newsCategories'?: Array<string> | null;
|
||
|
'sportsCategories'?: Array<string> | null;
|
||
|
'kidsCategories'?: Array<string> | null;
|
||
|
'movieCategories'?: Array<string> | null;
|
||
|
'channelMappings'?: Array<NameValuePair> | null;
|
||
|
'moviePrefix'?: string | null;
|
||
|
'preferredLanguage'?: string | null;
|
||
|
'userAgent'?: string | null;
|
||
|
|
||
|
static discriminator: string | undefined = undefined;
|
||
|
|
||
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
||
|
{
|
||
|
"name": "id",
|
||
|
"baseName": "Id",
|
||
|
"type": "string"
|
||
|
},
|
||
|
{
|
||
|
"name": "type",
|
||
|
"baseName": "Type",
|
||
|
"type": "string"
|
||
|
},
|
||
|
{
|
||
|
"name": "username",
|
||
|
"baseName": "Username",
|
||
|
"type": "string"
|
||
|
},
|
||
|
{
|
||
|
"name": "password",
|
||
|
"baseName": "Password",
|
||
|
"type": "string"
|
||
|
},
|
||
|
{
|
||
|
"name": "listingsId",
|
||
|
"baseName": "ListingsId",
|
||
|
"type": "string"
|
||
|
},
|
||
|
{
|
||
|
"name": "zipCode",
|
||
|
"baseName": "ZipCode",
|
||
|
"type": "string"
|
||
|
},
|
||
|
{
|
||
|
"name": "country",
|
||
|
"baseName": "Country",
|
||
|
"type": "string"
|
||
|
},
|
||
|
{
|
||
|
"name": "path",
|
||
|
"baseName": "Path",
|
||
|
"type": "string"
|
||
|
},
|
||
|
{
|
||
|
"name": "enabledTuners",
|
||
|
"baseName": "EnabledTuners",
|
||
|
"type": "Array<string>"
|
||
|
},
|
||
|
{
|
||
|
"name": "enableAllTuners",
|
||
|
"baseName": "EnableAllTuners",
|
||
|
"type": "boolean"
|
||
|
},
|
||
|
{
|
||
|
"name": "newsCategories",
|
||
|
"baseName": "NewsCategories",
|
||
|
"type": "Array<string>"
|
||
|
},
|
||
|
{
|
||
|
"name": "sportsCategories",
|
||
|
"baseName": "SportsCategories",
|
||
|
"type": "Array<string>"
|
||
|
},
|
||
|
{
|
||
|
"name": "kidsCategories",
|
||
|
"baseName": "KidsCategories",
|
||
|
"type": "Array<string>"
|
||
|
},
|
||
|
{
|
||
|
"name": "movieCategories",
|
||
|
"baseName": "MovieCategories",
|
||
|
"type": "Array<string>"
|
||
|
},
|
||
|
{
|
||
|
"name": "channelMappings",
|
||
|
"baseName": "ChannelMappings",
|
||
|
"type": "Array<NameValuePair>"
|
||
|
},
|
||
|
{
|
||
|
"name": "moviePrefix",
|
||
|
"baseName": "MoviePrefix",
|
||
|
"type": "string"
|
||
|
},
|
||
|
{
|
||
|
"name": "preferredLanguage",
|
||
|
"baseName": "PreferredLanguage",
|
||
|
"type": "string"
|
||
|
},
|
||
|
{
|
||
|
"name": "userAgent",
|
||
|
"baseName": "UserAgent",
|
||
|
"type": "string"
|
||
|
} ];
|
||
|
|
||
|
static getAttributeTypeMap() {
|
||
|
return ListingsProviderInfo.attributeTypeMap;
|
||
|
}
|
||
|
}
|
||
|
|