recettes/ng-client/model/receipe.ts

47 lines
930 B
TypeScript

/**
* Recettes - OpenAPI 3.0
* API recettes
*
* The version of the OpenAPI document: 1.0.0
* Contact: meutel@meutel.net
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { Ingredient } from './ingredient';
import { ReceipeReceipeYield } from './receipeReceipeYield';
import { Step } from './step';
export interface Receipe {
/**
* Receipe unique id
*/
id: string;
/**
* Receipe name
*/
name: string;
/**
* Receipe description
*/
description?: string;
/**
* Cooking time
*/
cookTime?: string;
/**
* Preparation time
*/
prepTime?: string;
/**
* Receipe author/source
*/
author?: string;
ingredients: Array<Ingredient>;
steps: Array<Step>;
receipeYield?: ReceipeReceipeYield;
}