(* Options: Date: 2025-12-06 08:48:38 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //GlobalNamespace: BusinessApi //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetFeatureDataRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BusinessApi open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type IHasPlaceId = abstract PlaceId:Int64 with get,set type FeatureType = | BarSpeciality = 0 | BarType = 1 | Cuisine = 2 | SaveFoodAndMoney = 3 | MealType = 4 | Menu = 5 | OutdoorSeating = 6 | Parking = 7 | PaymentOptions = 8 | PriceMainDish = 9 | SubCategories = 10 | SubCategoriesAndBrands = 11 | EatingSuitabilities = 12 | TakeAway = 13 | WearPriceProfile = 14 | WheelChairAccessible = 15 | Wifi = 16 | WebShop = 17 | Filtering = 18 [] type FeatureDto() = member val Slug:FeatureType = new FeatureType() with get,set member val Label:String = null with get,set [] type GetFeatureDataResponse() = member val FeatureData:ResizeArray = new ResizeArray() with get,set [] [] type GetFeatureDataRequest() = interface IReturn interface IGet member val PlaceId:Int64 = new Int64() with get,set