/* tslint:disable */ /* eslint-disable */ /** * Django Recipes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: * * * 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 ShoppingListRecipe */ export interface ShoppingListRecipe { /** * * @type {number} * @memberof ShoppingListRecipe */ readonly id?: number; /** * * @type {string} * @memberof ShoppingListRecipe */ readonly recipeName?: string; /** * * @type {string} * @memberof ShoppingListRecipe */ readonly name?: string; /** * * @type {number} * @memberof ShoppingListRecipe */ recipe?: number | null; /** * * @type {number} * @memberof ShoppingListRecipe */ mealplan?: number | null; /** * * @type {string} * @memberof ShoppingListRecipe */ servings: string; /** * * @type {string} * @memberof ShoppingListRecipe */ readonly mealplanNote?: string; /** * * @type {string} * @memberof ShoppingListRecipe */ readonly mealplanFromDate?: string; /** * * @type {string} * @memberof ShoppingListRecipe */ readonly mealplanType?: string; } /** * Check if a given object implements the ShoppingListRecipe interface. */ export function instanceOfShoppingListRecipe(value: object): boolean { let isInstance = true; isInstance = isInstance && "servings" in value; return isInstance; } export function ShoppingListRecipeFromJSON(json: any): ShoppingListRecipe { return ShoppingListRecipeFromJSONTyped(json, false); } export function ShoppingListRecipeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ShoppingListRecipe { if ((json === undefined) || (json === null)) { return json; } return { 'id': !exists(json, 'id') ? undefined : json['id'], 'recipeName': !exists(json, 'recipe_name') ? undefined : json['recipe_name'], 'name': !exists(json, 'name') ? undefined : json['name'], 'recipe': !exists(json, 'recipe') ? undefined : json['recipe'], 'mealplan': !exists(json, 'mealplan') ? undefined : json['mealplan'], 'servings': json['servings'], 'mealplanNote': !exists(json, 'mealplan_note') ? undefined : json['mealplan_note'], 'mealplanFromDate': !exists(json, 'mealplan_from_date') ? undefined : json['mealplan_from_date'], 'mealplanType': !exists(json, 'mealplan_type') ? undefined : json['mealplan_type'], }; } export function ShoppingListRecipeToJSON(value?: ShoppingListRecipe | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'recipe': value.recipe, 'mealplan': value.mealplan, 'servings': value.servings, }; }