/** * 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 RemoveFromPlaylistRequestDto. */ export class RemoveFromPlaylistRequestDto { /** * Gets or sets the playlist identifiers ot the items. Ignored when clearing the playlist. */ 'playlistItemIds'?: Array; /** * Gets or sets a value indicating whether the entire playlist should be cleared. */ 'clearPlaylist'?: boolean; /** * Gets or sets a value indicating whether the playing item should be removed as well. Used only when clearing the playlist. */ 'clearPlayingItem'?: boolean; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "playlistItemIds", "baseName": "PlaylistItemIds", "type": "Array" }, { "name": "clearPlaylist", "baseName": "ClearPlaylist", "type": "boolean" }, { "name": "clearPlayingItem", "baseName": "ClearPlayingItem", "type": "boolean" } ]; static getAttributeTypeMap() { return RemoveFromPlaylistRequestDto.attributeTypeMap; } }