jellyfin-discord-bot/server/jellyfin/models/GetMusicAlbumRemoteSearchResultsRequest.ts

97 lines
3.0 KiB
TypeScript

/* tslint:disable */
/* eslint-disable */
/**
* 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 { exists, mapValues } from '../runtime';
import type { AlbumInfo } from './AlbumInfo';
import {
AlbumInfoFromJSON,
AlbumInfoFromJSONTyped,
AlbumInfoToJSON,
} from './AlbumInfo';
/**
*
* @export
* @interface GetMusicAlbumRemoteSearchResultsRequest
*/
export interface GetMusicAlbumRemoteSearchResultsRequest {
/**
*
* @type {AlbumInfo}
* @memberof GetMusicAlbumRemoteSearchResultsRequest
*/
searchInfo?: AlbumInfo | null;
/**
*
* @type {string}
* @memberof GetMusicAlbumRemoteSearchResultsRequest
*/
itemId?: string;
/**
* Gets or sets the provider name to search within if set.
* @type {string}
* @memberof GetMusicAlbumRemoteSearchResultsRequest
*/
searchProviderName?: string | null;
/**
* Gets or sets a value indicating whether disabled providers should be included.
* @type {boolean}
* @memberof GetMusicAlbumRemoteSearchResultsRequest
*/
includeDisabledProviders?: boolean;
}
/**
* Check if a given object implements the GetMusicAlbumRemoteSearchResultsRequest interface.
*/
export function instanceOfGetMusicAlbumRemoteSearchResultsRequest(value: object): boolean {
let isInstance = true;
return isInstance;
}
export function GetMusicAlbumRemoteSearchResultsRequestFromJSON(json: any): GetMusicAlbumRemoteSearchResultsRequest {
return GetMusicAlbumRemoteSearchResultsRequestFromJSONTyped(json, false);
}
export function GetMusicAlbumRemoteSearchResultsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetMusicAlbumRemoteSearchResultsRequest {
if ((json === undefined) || (json === null)) {
return json;
}
return {
'searchInfo': !exists(json, 'SearchInfo') ? undefined : AlbumInfoFromJSON(json['SearchInfo']),
'itemId': !exists(json, 'ItemId') ? undefined : json['ItemId'],
'searchProviderName': !exists(json, 'SearchProviderName') ? undefined : json['SearchProviderName'],
'includeDisabledProviders': !exists(json, 'IncludeDisabledProviders') ? undefined : json['IncludeDisabledProviders'],
};
}
export function GetMusicAlbumRemoteSearchResultsRequestToJSON(value?: GetMusicAlbumRemoteSearchResultsRequest | null): any {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
'SearchInfo': AlbumInfoToJSON(value.searchInfo),
'ItemId': value.itemId,
'SearchProviderName': value.searchProviderName,
'IncludeDisabledProviders': value.includeDisabledProviders,
};
}