jellyfin-discord-bot/jellyfin/model/applySearchCriteriaRequest.ts
2023-04-15 22:02:40 +02:00

108 lines
2.8 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 { RemoteSearchResult } from './remoteSearchResult';
export class ApplySearchCriteriaRequest {
/**
* Gets or sets the name.
*/
'name'?: string | null;
/**
* Gets or sets the provider ids.
*/
'providerIds'?: { [key: string]: string; } | null;
/**
* Gets or sets the year.
*/
'productionYear'?: number | null;
'indexNumber'?: number | null;
'indexNumberEnd'?: number | null;
'parentIndexNumber'?: number | null;
'premiereDate'?: Date | null;
'imageUrl'?: string | null;
'searchProviderName'?: string | null;
'overview'?: string | null;
'albumArtist'?: RemoteSearchResult | null;
'artists'?: Array<RemoteSearchResult> | null;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "name",
"baseName": "Name",
"type": "string"
},
{
"name": "providerIds",
"baseName": "ProviderIds",
"type": "{ [key: string]: string; }"
},
{
"name": "productionYear",
"baseName": "ProductionYear",
"type": "number"
},
{
"name": "indexNumber",
"baseName": "IndexNumber",
"type": "number"
},
{
"name": "indexNumberEnd",
"baseName": "IndexNumberEnd",
"type": "number"
},
{
"name": "parentIndexNumber",
"baseName": "ParentIndexNumber",
"type": "number"
},
{
"name": "premiereDate",
"baseName": "PremiereDate",
"type": "Date"
},
{
"name": "imageUrl",
"baseName": "ImageUrl",
"type": "string"
},
{
"name": "searchProviderName",
"baseName": "SearchProviderName",
"type": "string"
},
{
"name": "overview",
"baseName": "Overview",
"type": "string"
},
{
"name": "albumArtist",
"baseName": "AlbumArtist",
"type": "RemoteSearchResult"
},
{
"name": "artists",
"baseName": "Artists",
"type": "Array<RemoteSearchResult>"
} ];
static getAttributeTypeMap() {
return ApplySearchCriteriaRequest.attributeTypeMap;
}
}