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

67 lines
2.0 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 { CountryInfo } from './countryInfo';
import { CultureDto } from './cultureDto';
import { ExternalIdInfo } from './externalIdInfo';
import { NameValuePair } from './nameValuePair';
import { ParentalRating } from './parentalRating';
export class MetadataEditorInfo {
'parentalRatingOptions'?: Array<ParentalRating>;
'countries'?: Array<CountryInfo>;
'cultures'?: Array<CultureDto>;
'externalIdInfos'?: Array<ExternalIdInfo>;
'contentType'?: string | null;
'contentTypeOptions'?: Array<NameValuePair>;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "parentalRatingOptions",
"baseName": "ParentalRatingOptions",
"type": "Array<ParentalRating>"
},
{
"name": "countries",
"baseName": "Countries",
"type": "Array<CountryInfo>"
},
{
"name": "cultures",
"baseName": "Cultures",
"type": "Array<CultureDto>"
},
{
"name": "externalIdInfos",
"baseName": "ExternalIdInfos",
"type": "Array<ExternalIdInfo>"
},
{
"name": "contentType",
"baseName": "ContentType",
"type": "string"
},
{
"name": "contentTypeOptions",
"baseName": "ContentTypeOptions",
"type": "Array<NameValuePair>"
} ];
static getAttributeTypeMap() {
return MetadataEditorInfo.attributeTypeMap;
}
}