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

57 lines
1.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 { MusicVideoInfo } from './musicVideoInfo';
export class GetMusicVideoRemoteSearchResultsRequest {
'searchInfo'?: MusicVideoInfo | null;
'itemId'?: string;
/**
* Gets or sets the provider name to search within if set.
*/
'searchProviderName'?: string | null;
/**
* Gets or sets a value indicating whether disabled providers should be included.
*/
'includeDisabledProviders'?: boolean;
static discriminator: string | undefined = undefined;
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
{
"name": "searchInfo",
"baseName": "SearchInfo",
"type": "MusicVideoInfo"
},
{
"name": "itemId",
"baseName": "ItemId",
"type": "string"
},
{
"name": "searchProviderName",
"baseName": "SearchProviderName",
"type": "string"
},
{
"name": "includeDisabledProviders",
"baseName": "IncludeDisabledProviders",
"type": "boolean"
} ];
static getAttributeTypeMap() {
return GetMusicVideoRemoteSearchResultsRequest.attributeTypeMap;
}
}