@thunderfat/backend-sdk
Version:
TypeScript SDK for ThunderFat Nutrition Management API
61 lines (58 loc) • 1.17 kB
text/typescript
/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { IngredienteDTO } from './IngredienteDTO';
/**
* Data transfer object for predetermined dishes created by nutritionists
*/
export type PlatoPredeterminadoDTO = {
/**
* Unique identifier for the dish
*/
id?: number;
/**
* Name of the dish
*/
nombre: string;
/**
* List of ingredients used in this dish
*/
ingredientes?: Array<IngredienteDTO>;
/**
* Cooking instructions for preparing the dish
*/
receta?: string;
/**
* Total protein content in grams
*/
proteinastotales?: number;
/**
* Total fat content in grams
*/
grasastotales?: number;
/**
* Total caloric content in kcal
*/
kcaltotales?: number;
/**
* Total carbohydrate content in grams
*/
hidratostotales?: number;
/**
* Dietary fiber content in grams
*/
fibra?: number;
/**
* Salt content in grams
*/
sal?: number;
/**
* Sugar content in grams
*/
azucar?: number;
/**
* ID of the nutritionist who created this dish
*/
nutricionistaId: number;
};