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

97 lines
2.8 KiB
TypeScript
Raw Normal View History

2023-05-04 23:34:53 +02:00
/* 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 { TrailerInfo } from './TrailerInfo';
import {
TrailerInfoFromJSON,
TrailerInfoFromJSONTyped,
TrailerInfoToJSON,
} from './TrailerInfo';
/**
*
* @export
* @interface TrailerInfoRemoteSearchQuery
*/
export interface TrailerInfoRemoteSearchQuery {
/**
*
* @type {TrailerInfo}
* @memberof TrailerInfoRemoteSearchQuery
*/
searchInfo?: TrailerInfo | null;
/**
*
* @type {string}
* @memberof TrailerInfoRemoteSearchQuery
*/
itemId?: string;
/**
* Gets or sets the provider name to search within if set.
* @type {string}
* @memberof TrailerInfoRemoteSearchQuery
*/
searchProviderName?: string | null;
/**
* Gets or sets a value indicating whether disabled providers should be included.
* @type {boolean}
* @memberof TrailerInfoRemoteSearchQuery
*/
includeDisabledProviders?: boolean;
}
/**
* Check if a given object implements the TrailerInfoRemoteSearchQuery interface.
*/
export function instanceOfTrailerInfoRemoteSearchQuery(value: object): boolean {
let isInstance = true;
return isInstance;
}
export function TrailerInfoRemoteSearchQueryFromJSON(json: any): TrailerInfoRemoteSearchQuery {
return TrailerInfoRemoteSearchQueryFromJSONTyped(json, false);
}
export function TrailerInfoRemoteSearchQueryFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrailerInfoRemoteSearchQuery {
if ((json === undefined) || (json === null)) {
return json;
}
return {
'searchInfo': !exists(json, 'SearchInfo') ? undefined : TrailerInfoFromJSON(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 TrailerInfoRemoteSearchQueryToJSON(value?: TrailerInfoRemoteSearchQuery | null): any {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
'SearchInfo': TrailerInfoToJSON(value.searchInfo),
'ItemId': value.itemId,
'SearchProviderName': value.searchProviderName,
'IncludeDisabledProviders': value.includeDisabledProviders,
};
}