/* 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 { PersonLookupInfo } from './PersonLookupInfo'; import { PersonLookupInfoFromJSON, PersonLookupInfoFromJSONTyped, PersonLookupInfoToJSON, } from './PersonLookupInfo'; /** * * @export * @interface GetPersonRemoteSearchResultsRequest */ export interface GetPersonRemoteSearchResultsRequest { /** * * @type {PersonLookupInfo} * @memberof GetPersonRemoteSearchResultsRequest */ searchInfo?: PersonLookupInfo | null; /** * * @type {string} * @memberof GetPersonRemoteSearchResultsRequest */ itemId?: string; /** * Gets or sets the provider name to search within if set. * @type {string} * @memberof GetPersonRemoteSearchResultsRequest */ searchProviderName?: string | null; /** * Gets or sets a value indicating whether disabled providers should be included. * @type {boolean} * @memberof GetPersonRemoteSearchResultsRequest */ includeDisabledProviders?: boolean; } /** * Check if a given object implements the GetPersonRemoteSearchResultsRequest interface. */ export function instanceOfGetPersonRemoteSearchResultsRequest(value: object): boolean { let isInstance = true; return isInstance; } export function GetPersonRemoteSearchResultsRequestFromJSON(json: any): GetPersonRemoteSearchResultsRequest { return GetPersonRemoteSearchResultsRequestFromJSONTyped(json, false); } export function GetPersonRemoteSearchResultsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPersonRemoteSearchResultsRequest { if ((json === undefined) || (json === null)) { return json; } return { 'searchInfo': !exists(json, 'SearchInfo') ? undefined : PersonLookupInfoFromJSON(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 GetPersonRemoteSearchResultsRequestToJSON(value?: GetPersonRemoteSearchResultsRequest | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'SearchInfo': PersonLookupInfoToJSON(value.searchInfo), 'ItemId': value.itemId, 'SearchProviderName': value.searchProviderName, 'IncludeDisabledProviders': value.includeDisabledProviders, }; }