/* Options: Date: 2025-12-06 07:51:23 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetCategoryTreeRequest.* //ExcludeTypes: //InitializeCollections: True //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.* @Route(Path="/category/get_tree", Verbs="GET") open class GetCategoryTreeRequest : IReturn, IGet { open var absoluteSlug:String? = null companion object { private val responseType = GetCategoryTreeResponse::class.java } override fun getResponseType(): Any? = GetCategoryTreeRequest.responseType } open class GetCategoryTreeResponse { open var tree:ArrayList = ArrayList() } open class FeatureDto { open var slug:FeatureType? = null open var label:String? = null } enum class FeatureType { BarSpeciality, BarType, Cuisine, SaveFoodAndMoney, MealType, Menu, OutdoorSeating, Parking, PaymentOptions, PriceMainDish, SubCategories, SubCategoriesAndBrands, EatingSuitabilities, TakeAway, WearPriceProfile, WheelChairAccessible, Wifi, WebShop, Filtering, } open class CategoryTreeWithFeaturesDto { open var id:Long? = null open var slug:String? = null open var absoluteSlug:String? = null open var name:String? = null open var children:ArrayList = ArrayList() open var featureTypes:ArrayList = ArrayList() }