/* tslint:disable */ /* eslint-disable */ /** * 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 { exists, mapValues } from '../runtime'; /** * Class PreviousItemRequestDto. * @export * @interface SyncPlayPreviousItemRequest */ export interface SyncPlayPreviousItemRequest { /** * Gets or sets the playing item identifier. * @type {string} * @memberof SyncPlayPreviousItemRequest */ playlistItemId?: string; } /** * Check if a given object implements the SyncPlayPreviousItemRequest interface. */ export function instanceOfSyncPlayPreviousItemRequest(value: object): boolean { let isInstance = true; return isInstance; } export function SyncPlayPreviousItemRequestFromJSON(json: any): SyncPlayPreviousItemRequest { return SyncPlayPreviousItemRequestFromJSONTyped(json, false); } export function SyncPlayPreviousItemRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SyncPlayPreviousItemRequest { if ((json === undefined) || (json === null)) { return json; } return { 'playlistItemId': !exists(json, 'PlaylistItemId') ? undefined : json['PlaylistItemId'], }; } export function SyncPlayPreviousItemRequestToJSON(value?: SyncPlayPreviousItemRequest | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'PlaylistItemId': value.playlistItemId, }; }