recettes/ng-client/model/ingredient.ts

30 lines
558 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 { Quantity } from './quantity';
/**
* Ingredient in receipe
*/
export interface Ingredient {
quantity?: Quantity;
/**
* Name of ingredient
*/
text?: string;
/**
* Link to ingredient parameter
*/
ref?: string;
}