97 lines
2.8 KiB
TypeScript
97 lines
2.8 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 { ArtistInfo } from './ArtistInfo';
|
||
|
import {
|
||
|
ArtistInfoFromJSON,
|
||
|
ArtistInfoFromJSONTyped,
|
||
|
ArtistInfoToJSON,
|
||
|
} from './ArtistInfo';
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @export
|
||
|
* @interface ArtistInfoRemoteSearchQuery
|
||
|
*/
|
||
|
export interface ArtistInfoRemoteSearchQuery {
|
||
|
/**
|
||
|
*
|
||
|
* @type {ArtistInfo}
|
||
|
* @memberof ArtistInfoRemoteSearchQuery
|
||
|
*/
|
||
|
searchInfo?: ArtistInfo | null;
|
||
|
/**
|
||
|
*
|
||
|
* @type {string}
|
||
|
* @memberof ArtistInfoRemoteSearchQuery
|
||
|
*/
|
||
|
itemId?: string;
|
||
|
/**
|
||
|
* Gets or sets the provider name to search within if set.
|
||
|
* @type {string}
|
||
|
* @memberof ArtistInfoRemoteSearchQuery
|
||
|
*/
|
||
|
searchProviderName?: string | null;
|
||
|
/**
|
||
|
* Gets or sets a value indicating whether disabled providers should be included.
|
||
|
* @type {boolean}
|
||
|
* @memberof ArtistInfoRemoteSearchQuery
|
||
|
*/
|
||
|
includeDisabledProviders?: boolean;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Check if a given object implements the ArtistInfoRemoteSearchQuery interface.
|
||
|
*/
|
||
|
export function instanceOfArtistInfoRemoteSearchQuery(value: object): boolean {
|
||
|
let isInstance = true;
|
||
|
|
||
|
return isInstance;
|
||
|
}
|
||
|
|
||
|
export function ArtistInfoRemoteSearchQueryFromJSON(json: any): ArtistInfoRemoteSearchQuery {
|
||
|
return ArtistInfoRemoteSearchQueryFromJSONTyped(json, false);
|
||
|
}
|
||
|
|
||
|
export function ArtistInfoRemoteSearchQueryFromJSONTyped(json: any, ignoreDiscriminator: boolean): ArtistInfoRemoteSearchQuery {
|
||
|
if ((json === undefined) || (json === null)) {
|
||
|
return json;
|
||
|
}
|
||
|
return {
|
||
|
|
||
|
'searchInfo': !exists(json, 'SearchInfo') ? undefined : ArtistInfoFromJSON(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 ArtistInfoRemoteSearchQueryToJSON(value?: ArtistInfoRemoteSearchQuery | null): any {
|
||
|
if (value === undefined) {
|
||
|
return undefined;
|
||
|
}
|
||
|
if (value === null) {
|
||
|
return null;
|
||
|
}
|
||
|
return {
|
||
|
|
||
|
'SearchInfo': ArtistInfoToJSON(value.searchInfo),
|
||
|
'ItemId': value.itemId,
|
||
|
'SearchProviderName': value.searchProviderName,
|
||
|
'IncludeDisabledProviders': value.includeDisabledProviders,
|
||
|
};
|
||
|
}
|
||
|
|