/* 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 MetadataConfiguration */ export interface MetadataConfiguration { /** * * @type {boolean} * @memberof MetadataConfiguration */ useFileCreationTimeForDateAdded?: boolean; } /** * Check if a given object implements the MetadataConfiguration interface. */ export function instanceOfMetadataConfiguration(value: object): boolean { let isInstance = true; return isInstance; } export function MetadataConfigurationFromJSON(json: any): MetadataConfiguration { return MetadataConfigurationFromJSONTyped(json, false); } export function MetadataConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): MetadataConfiguration { if ((json === undefined) || (json === null)) { return json; } return { 'useFileCreationTimeForDateAdded': !exists(json, 'UseFileCreationTimeForDateAdded') ? undefined : json['UseFileCreationTimeForDateAdded'], }; } export function MetadataConfigurationToJSON(value?: MetadataConfiguration | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'UseFileCreationTimeForDateAdded': value.useFileCreationTimeForDateAdded, }; }