57 lines
1.6 KiB
TypeScript
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 { BookInfo } from './bookInfo';
|
|
|
|
export class GetBookRemoteSearchResultsRequest {
|
|
'searchInfo'?: BookInfo | 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": "BookInfo"
|
|
},
|
|
{
|
|
"name": "itemId",
|
|
"baseName": "ItemId",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "searchProviderName",
|
|
"baseName": "SearchProviderName",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "includeDisabledProviders",
|
|
"baseName": "IncludeDisabledProviders",
|
|
"type": "boolean"
|
|
} ];
|
|
|
|
static getAttributeTypeMap() {
|
|
return GetBookRemoteSearchResultsRequest.attributeTypeMap;
|
|
}
|
|
}
|
|
|