/* 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'; /** * * @export * @interface PlaylistCreationResult */ export interface PlaylistCreationResult { /** * * @type {string} * @memberof PlaylistCreationResult */ id?: string; } /** * Check if a given object implements the PlaylistCreationResult interface. */ export function instanceOfPlaylistCreationResult(value: object): boolean { let isInstance = true; return isInstance; } export function PlaylistCreationResultFromJSON(json: any): PlaylistCreationResult { return PlaylistCreationResultFromJSONTyped(json, false); } export function PlaylistCreationResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlaylistCreationResult { if ((json === undefined) || (json === null)) { return json; } return { 'id': !exists(json, 'Id') ? undefined : json['Id'], }; } export function PlaylistCreationResultToJSON(value?: PlaylistCreationResult | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'Id': value.id, }; }