UNPKG

@jellyfin/sdk

Version:
37 lines (36 loc) 1.03 kB
/** * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * Do not edit the class manually. * * Jellyfin API * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ import type { PlaylistUserPermissions } from './playlist-user-permissions'; /** * DTO for playlists. * @export * @interface PlaylistDto */ export interface PlaylistDto { /** * Gets or sets a value indicating whether the playlist is publicly readable. * @type {boolean} * @memberof PlaylistDto */ 'OpenAccess'?: boolean; /** * Gets or sets the share permissions. * @type {Array<PlaylistUserPermissions>} * @memberof PlaylistDto */ 'Shares'?: Array<PlaylistUserPermissions>; /** * Gets or sets the item ids. * @type {Array<string>} * @memberof PlaylistDto */ 'ItemIds'?: Array<string>; }