' Options: 'Date: 2025-05-06 23:03:11 '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: FindSearchCompletionRequest.* '''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 FindSearchCompletionBrand Public Property Name As String Public Property CategoryAbsoluteSlug As String End Class Public Partial Class FindSearchCompletionCategory Public Property Name As String Public Property AbsoluteSlug As String End Class Public Partial Class FindSearchCompletionEntry Public Property Category As FindSearchCompletionCategory Public Property Brand As FindSearchCompletionBrand Public Property Place As FindSearchCompletionPlace Public Property FreeText As FindSearchCompletionFreeText End Class Public Partial Class FindSearchCompletionFreeText Public Property Term As String End Class Public Partial Class FindSearchCompletionPlace Public Property Name As String Public Property Guid As Guid End Class Public Partial Class FindSearchCompletionRequest Implements IReturn(Of FindSearchCompletionResponse) Implements IGet Implements IPost Public Property Filter As QueryFilterDto Public Property Location As QueryLocationDto End Class Public Partial Class FindSearchCompletionResponse Public Property Suggestions As List(Of FindSearchCompletionEntry) = New List(Of FindSearchCompletionEntry) 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