/* Options: Date: 2025-12-06 07:01:18 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //GlobalNamespace: BackofficeApi //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetAllMealTypeRequest.* //ExcludeTypes: //DefaultImports: */ export module BackofficeApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IGet { } export class BackofficeMealTypeDto { public id?: number; public label: string; public slug: string; public position?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class GetAllMealTypeResponse { public mealTypes: BackofficeMealTypeDto[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/meal_type/get_all", "GET") export class GetAllMealTypeRequest implements IReturn, IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetAllMealTypeRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new GetAllMealTypeResponse(); } } }