92 lines
2.3 KiB
TypeScript
92 lines
2.3 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';
|
|
|
|
export class AddTunerHostRequest {
|
|
'id'?: string | null;
|
|
'url'?: string | null;
|
|
'type'?: string | null;
|
|
'deviceId'?: string | null;
|
|
'friendlyName'?: string | null;
|
|
'importFavoritesOnly'?: boolean;
|
|
'allowHWTranscoding'?: boolean;
|
|
'enableStreamLooping'?: boolean;
|
|
'source'?: string | null;
|
|
'tunerCount'?: number;
|
|
'userAgent'?: string | null;
|
|
|
|
static discriminator: string | undefined = undefined;
|
|
|
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
{
|
|
"name": "id",
|
|
"baseName": "Id",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "url",
|
|
"baseName": "Url",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "type",
|
|
"baseName": "Type",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "deviceId",
|
|
"baseName": "DeviceId",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "friendlyName",
|
|
"baseName": "FriendlyName",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "importFavoritesOnly",
|
|
"baseName": "ImportFavoritesOnly",
|
|
"type": "boolean"
|
|
},
|
|
{
|
|
"name": "allowHWTranscoding",
|
|
"baseName": "AllowHWTranscoding",
|
|
"type": "boolean"
|
|
},
|
|
{
|
|
"name": "enableStreamLooping",
|
|
"baseName": "EnableStreamLooping",
|
|
"type": "boolean"
|
|
},
|
|
{
|
|
"name": "source",
|
|
"baseName": "Source",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "tunerCount",
|
|
"baseName": "TunerCount",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "userAgent",
|
|
"baseName": "UserAgent",
|
|
"type": "string"
|
|
} ];
|
|
|
|
static getAttributeTypeMap() {
|
|
return AddTunerHostRequest.attributeTypeMap;
|
|
}
|
|
}
|
|
|