/* tslint:disable */ /* eslint-disable */ /** * Tandoor * Tandoor API Docs * * The version of the OpenAPI document: 0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { mapValues } from '../runtime'; import type { User } from './User'; import { UserFromJSON, UserFromJSONTyped, UserToJSON, } from './User'; /** * * @export * @interface PatchedCookLog */ export interface PatchedCookLog { /** * * @type {number} * @memberof PatchedCookLog */ readonly id?: number; /** * * @type {number} * @memberof PatchedCookLog */ recipe?: number; /** * * @type {number} * @memberof PatchedCookLog */ servings?: number; /** * * @type {number} * @memberof PatchedCookLog */ rating?: number; /** * * @type {string} * @memberof PatchedCookLog */ comment?: string; /** * * @type {User} * @memberof PatchedCookLog */ readonly createdBy?: User; /** * * @type {Date} * @memberof PatchedCookLog */ createdAt?: Date; /** * * @type {Date} * @memberof PatchedCookLog */ readonly updatedAt?: Date; } /** * Check if a given object implements the PatchedCookLog interface. */ export function instanceOfPatchedCookLog(value: object): boolean { return true; } export function PatchedCookLogFromJSON(json: any): PatchedCookLog { return PatchedCookLogFromJSONTyped(json, false); } export function PatchedCookLogFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedCookLog { if (json == null) { return json; } return { 'id': json['id'] == null ? undefined : json['id'], 'recipe': json['recipe'] == null ? undefined : json['recipe'], 'servings': json['servings'] == null ? undefined : json['servings'], 'rating': json['rating'] == null ? undefined : json['rating'], 'comment': json['comment'] == null ? undefined : json['comment'], 'createdBy': json['created_by'] == null ? undefined : UserFromJSON(json['created_by']), 'createdAt': json['created_at'] == null ? undefined : (new Date(json['created_at'])), 'updatedAt': json['updated_at'] == null ? undefined : (new Date(json['updated_at'])), }; } export function PatchedCookLogToJSON(value?: Omit | null): any { if (value == null) { return value; } return { 'recipe': value['recipe'], 'servings': value['servings'], 'rating': value['rating'], 'comment': value['comment'], 'created_at': value['createdAt'] == null ? undefined : ((value['createdAt']).toISOString()), }; }