56 lines
1.2 KiB
TypeScript
56 lines
1.2 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';
|
|
|
|
/**
|
|
* An entity representing custom options for a device.
|
|
*/
|
|
export class DeviceOptions {
|
|
/**
|
|
* Gets the id.
|
|
*/
|
|
'id'?: number;
|
|
/**
|
|
* Gets the device id.
|
|
*/
|
|
'deviceId'?: string;
|
|
/**
|
|
* Gets or sets the custom name.
|
|
*/
|
|
'customName'?: string | null;
|
|
|
|
static discriminator: string | undefined = undefined;
|
|
|
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
{
|
|
"name": "id",
|
|
"baseName": "Id",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "deviceId",
|
|
"baseName": "DeviceId",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "customName",
|
|
"baseName": "CustomName",
|
|
"type": "string"
|
|
} ];
|
|
|
|
static getAttributeTypeMap() {
|
|
return DeviceOptions.attributeTypeMap;
|
|
}
|
|
}
|
|
|