jellyfin-discord-bot/server/jellyfin/models/PreviousItemRequestDto.ts

66 lines
1.7 KiB
TypeScript
Raw Permalink Normal View History

2023-05-04 23:34:53 +02:00
/* 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 PreviousItemRequestDto
*/
export interface PreviousItemRequestDto {
/**
* Gets or sets the playing item identifier.
* @type {string}
* @memberof PreviousItemRequestDto
*/
playlistItemId?: string;
}
/**
* Check if a given object implements the PreviousItemRequestDto interface.
*/
export function instanceOfPreviousItemRequestDto(value: object): boolean {
let isInstance = true;
return isInstance;
}
export function PreviousItemRequestDtoFromJSON(json: any): PreviousItemRequestDto {
return PreviousItemRequestDtoFromJSONTyped(json, false);
}
export function PreviousItemRequestDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): PreviousItemRequestDto {
if ((json === undefined) || (json === null)) {
return json;
}
return {
'playlistItemId': !exists(json, 'PlaylistItemId') ? undefined : json['PlaylistItemId'],
};
}
export function PreviousItemRequestDtoToJSON(value?: PreviousItemRequestDto | null): any {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
'PlaylistItemId': value.playlistItemId,
};
}