/* Options: Date: 2025-12-06 06:59:38 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: GetAllFeatureRequest.* //ExcludeTypes: //DefaultImports: */ export module BackofficeApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IGet { } export enum FeatureType { BarSpeciality = 'BarSpeciality', BarType = 'BarType', Cuisine = 'Cuisine', SaveFoodAndMoney = 'SaveFoodAndMoney', MealType = 'MealType', Menu = 'Menu', OutdoorSeating = 'OutdoorSeating', Parking = 'Parking', PaymentOptions = 'PaymentOptions', PriceMainDish = 'PriceMainDish', SubCategories = 'SubCategories', SubCategoriesAndBrands = 'SubCategoriesAndBrands', EatingSuitabilities = 'EatingSuitabilities', TakeAway = 'TakeAway', WearPriceProfile = 'WearPriceProfile', WheelChairAccessible = 'WheelChairAccessible', Wifi = 'Wifi', WebShop = 'WebShop', Filtering = 'Filtering', } export class GetAllFeatureResponse { public featureTypes: FeatureType[] = []; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/feature/get_all", "GET") export class GetAllFeatureRequest implements IReturn, IGet { public categoryId?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetAllFeatureRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new GetAllFeatureResponse(); } } }