/* Options: Date: 2025-12-06 06:59:36 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: DeleteFeatureRequest.* //ExcludeTypes: //DefaultImports: */ export module BackofficeApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IDelete { } 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 DeleteFeatureResponse { public success?: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/feature/delete", "DELETE") export class DeleteFeatureRequest implements IReturn, IDelete { public categoryId?: number; public featureType?: FeatureType; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteFeatureRequest'; } public getMethod() { return 'DELETE'; } public createResponse() { return new DeleteFeatureResponse(); } } }