/* Options: Date: 2025-12-06 06:59:34 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //Package: //GlobalNamespace: BackofficeApi //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DeleteFeatureRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class BackofficeApi { @Route(Path="/feature/delete", Verbs="DELETE") public static class DeleteFeatureRequest implements IReturn, IDelete { public Long categoryId = null; public FeatureType featureType = null; public Long getCategoryId() { return categoryId; } public DeleteFeatureRequest setCategoryId(Long value) { this.categoryId = value; return this; } public FeatureType getFeatureType() { return featureType; } public DeleteFeatureRequest setFeatureType(FeatureType value) { this.featureType = value; return this; } private static Object responseType = DeleteFeatureResponse.class; public Object getResponseType() { return responseType; } } public static class DeleteFeatureResponse { public Boolean success = null; public Boolean isSuccess() { return success; } public DeleteFeatureResponse setSuccess(Boolean value) { this.success = value; return this; } } public static enum FeatureType { BarSpeciality, BarType, Cuisine, SaveFoodAndMoney, MealType, Menu, OutdoorSeating, Parking, PaymentOptions, PriceMainDish, SubCategories, SubCategoriesAndBrands, EatingSuitabilities, TakeAway, WearPriceProfile, WheelChairAccessible, Wifi, WebShop, Filtering; } }