56 lines
1.4 KiB
TypeScript
56 lines
1.4 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';
|
||
|
|
||
|
/**
|
||
|
* Class PlayRequestDto.
|
||
|
*/
|
||
|
export class PlayRequestDto {
|
||
|
/**
|
||
|
* Gets or sets the playing queue.
|
||
|
*/
|
||
|
'playingQueue'?: Array<string>;
|
||
|
/**
|
||
|
* Gets or sets the position of the playing item in the queue.
|
||
|
*/
|
||
|
'playingItemPosition'?: number;
|
||
|
/**
|
||
|
* Gets or sets the start position ticks.
|
||
|
*/
|
||
|
'startPositionTicks'?: number;
|
||
|
|
||
|
static discriminator: string | undefined = undefined;
|
||
|
|
||
|
static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [
|
||
|
{
|
||
|
"name": "playingQueue",
|
||
|
"baseName": "PlayingQueue",
|
||
|
"type": "Array<string>"
|
||
|
},
|
||
|
{
|
||
|
"name": "playingItemPosition",
|
||
|
"baseName": "PlayingItemPosition",
|
||
|
"type": "number"
|
||
|
},
|
||
|
{
|
||
|
"name": "startPositionTicks",
|
||
|
"baseName": "StartPositionTicks",
|
||
|
"type": "number"
|
||
|
} ];
|
||
|
|
||
|
static getAttributeTypeMap() {
|
||
|
return PlayRequestDto.attributeTypeMap;
|
||
|
}
|
||
|
}
|
||
|
|