Spaces:
Running
Running
File size: 969 Bytes
7676a27 5bd994f 7676a27 b561958 7676a27 339fa48 ce1ade1 7676a27 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
import { Expose } from "class-transformer";
import { SwaggerResponseProperty } from "@lib/decorators/swagger-response-property.decorator";
export class MealSerialization {
@Expose({ name: "_id" })
@SwaggerResponseProperty({ type: "string" })
id: string;
@Expose()
@SwaggerResponseProperty({ type: "string" })
name: string;
@Expose()
@SwaggerResponseProperty({ type: "string" })
created_at: Date;
@Expose()
@SwaggerResponseProperty({ type: "string" })
image: string;
@Expose()
@SwaggerResponseProperty({ type: ["string"] })
ingredients: any;
@Expose()
@SwaggerResponseProperty({ type: "number" })
calories: number;
@Expose()
@SwaggerResponseProperty({ type: "number" })
carbs: number;
@Expose()
@SwaggerResponseProperty({ type: "number" })
proteins: number;
@Expose()
@SwaggerResponseProperty({ type: "number" })
fats: number;
@Expose()
@SwaggerResponseProperty({ type: "string" })
type: string;
} |