/* Options: Date: 2025-12-06 08:53:09 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: GetAllFeatureRequest.* //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/get_all", Verbs="GET") public static class GetAllFeatureRequest implements IReturn, IGet { public Long categoryId = null; public Long getCategoryId() { return categoryId; } public GetAllFeatureRequest setCategoryId(Long value) { this.categoryId = value; return this; } private static Object responseType = GetAllFeatureResponse.class; public Object getResponseType() { return responseType; } } public static class GetAllFeatureResponse { public ArrayList featureTypes = new ArrayList(); public ArrayList getFeatureTypes() { return featureTypes; } public GetAllFeatureResponse setFeatureTypes(ArrayList value) { this.featureTypes = 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; } }