' Options: 'Date: 2025-05-06 21:19:10 'Version: 8.70 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://unstable-consumer-api.brovs.com ' '''GlobalNamespace: ConsumerApi '''MakePartial: True '''MakeVirtual: False '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: AddSavedSearchRequest.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.IO Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports ConsumerApi Namespace Global Namespace ConsumerApi Public Partial Class AddSavedSearchRequest Implements IReturn(Of AddSavedSearchResponse) Implements IPost Public Property Name As String Public Property Filter As QueryFilterDto Public Property Location As QueryLocationDto End Class Public Partial Class AddSavedSearchResponse Public Property SavedSearchId As Long End Class Public Partial Class QueryFilterDto Public Property Term As String Public Property PlaceGuid As Guid? Public Property AdMessageGuid As Guid? Public Property CategoryAbsoluteSlugs As List(Of String) = New List(Of String) Public Property BarSpecialitySlugs As List(Of String) = New List(Of String) Public Property BarTypeSlugs As List(Of String) = New List(Of String) Public Property BrandNames As List(Of String) = New List(Of String) Public Property CuisineSlugs As List(Of String) = New List(Of String) Public Property MealTypeSlugs As List(Of String) = New List(Of String) Public Property Parking As List(Of Parking) = New List(Of Parking) Public Property PaymentOptions As List(Of PaymentOption) = New List(Of PaymentOption) Public Property PriceMainDishes As List(Of PriceMainDish) = New List(Of PriceMainDish) Public Property EatingSuitabilitySlugs As List(Of String) = New List(Of String) Public Property TakeAwaySlugs As List(Of String) = New List(Of String) Public Property WearPriceProfileSlugs As List(Of String) = New List(Of String) Public Property WheelChairAccessible As Boolean? Public Property Wifi As Boolean? Public Property OutdoorSeating As Boolean? Public Property SaveFoodAndMoney As Boolean? Public Property OpenAt As OpenAtTimeDto End Class Public Partial Class QueryLocationDto Public Property Longitude As Single? Public Property Latitude As Single? Public Property SearchRadiusInKm As Single? End Class Public Enum DayOfWeek Sunday Monday Tuesday Wednesday Thursday Friday Saturday End Enum Public Partial Class OpenAtTimeDto Public Property WeekDay As DayOfWeek Public Property Hour As Integer Public Property Minute As Integer End Class Public Enum Parking StreetParking ParkingGarageNearby End Enum Public Enum PaymentOption Visa MasterCard AmericanExpress Diners Vipps End Enum Public Enum PriceMainDish Value Medium High FineDining End Enum End Namespace End Namespace