@thunderfat/backend-sdk
Version:
TypeScript SDK for ThunderFat Nutrition Management API
57 lines (54 loc) • 1.06 kB
text/typescript
/* generated using openapi-typescript-codegen -- do no edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { IngredienteDTO } from './IngredienteDTO';
export type PlatoPlanDietaDTO = {
/**
* 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;
cantidad: number;
comidaId?: number;
planDietaId?: number;
};