74 lines
1.7 KiB
TypeScript
74 lines
1.7 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 { DayOfWeek } from './dayOfWeek';
|
|
|
|
/**
|
|
* Class TaskTriggerInfo.
|
|
*/
|
|
export class TaskTriggerInfo {
|
|
/**
|
|
* Gets or sets the type.
|
|
*/
|
|
'type'?: string | null;
|
|
/**
|
|
* Gets or sets the time of day.
|
|
*/
|
|
'timeOfDayTicks'?: number | null;
|
|
/**
|
|
* Gets or sets the interval.
|
|
*/
|
|
'intervalTicks'?: number | null;
|
|
'dayOfWeek'?: DayOfWeek | null;
|
|
/**
|
|
* Gets or sets the maximum runtime ticks.
|
|
*/
|
|
'maxRuntimeTicks'?: number | null;
|
|
|
|
static discriminator: string | undefined = undefined;
|
|
|
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
|
{
|
|
"name": "type",
|
|
"baseName": "Type",
|
|
"type": "string"
|
|
},
|
|
{
|
|
"name": "timeOfDayTicks",
|
|
"baseName": "TimeOfDayTicks",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "intervalTicks",
|
|
"baseName": "IntervalTicks",
|
|
"type": "number"
|
|
},
|
|
{
|
|
"name": "dayOfWeek",
|
|
"baseName": "DayOfWeek",
|
|
"type": "DayOfWeek"
|
|
},
|
|
{
|
|
"name": "maxRuntimeTicks",
|
|
"baseName": "MaxRuntimeTicks",
|
|
"type": "number"
|
|
} ];
|
|
|
|
static getAttributeTypeMap() {
|
|
return TaskTriggerInfo.attributeTypeMap;
|
|
}
|
|
}
|
|
|
|
export namespace TaskTriggerInfo {
|
|
}
|