/* Options: Date: 2025-12-06 07:57:39 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: AddFeatureRequest.* //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 { public static class AddFeatureRequest implements IReturn { public Long categoryId = null; public FeatureType featureType = null; public Long getCategoryId() { return categoryId; } public AddFeatureRequest setCategoryId(Long value) { this.categoryId = value; return this; } public FeatureType getFeatureType() { return featureType; } public AddFeatureRequest setFeatureType(FeatureType value) { this.featureType = value; return this; } private static Object responseType = AddFeatureResponse.class; public Object getResponseType() { return responseType; } } public static class AddFeatureResponse { public Long id = null; public Long getId() { return id; } public AddFeatureResponse setId(Long value) { this.id = 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; } }