' Options: 'Date: 2025-12-06 07:02:55 'Version: 8.80 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://business-api.brovs.com ' '''GlobalNamespace: BusinessApi '''MakePartial: True '''MakeVirtual: False '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: PlaceUpdateRequest.* '''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 BusinessApi Namespace Global Namespace BusinessApi Public Partial Class PlaceUpdateRequest Implements IReturn(Of PlaceUpdateResponse) Implements IPost Implements IHasPlaceId Public Property PlaceId As Long Implements IHasPlaceId.PlaceId Public Property Name As String Public Property Phone As String Public Property Email As String Public Property Street As String Public Property PostalCode As String Public Property Region As String Public Property Overview As String Public Property Website As String Public Property WebShop As String Public Property Longitude As Single? Public Property Latitude As Single? Public Property WheelChairAccessible As Boolean? Public Property Wifi As Boolean? Public Property OutdoorSeating As Boolean? Public Property SaveFoodAndMoney As Boolean? Public Property OpeningHours As OpeningHours Public Property Parking As List(Of Parking) = New List(Of Parking) Public Property PaymentOptions As List(Of PaymentOption) = New List(Of PaymentOption) End Class Public Partial Class PlaceUpdateResponse Public Property PlaceId As Long End Class Public Interface IHasPlaceId Property PlaceId As Long End Interface Public Partial Class OpeningHour Public Property OpenAtHour As Integer Public Property OpenAtMinute As Integer Public Property CloseAtHour As Integer Public Property CloseAtMinute As Integer End Class Public Partial Class OpeningHours Public Property Weekly As WeeklyOpeningHours End Class Public Partial Class WeeklyOpeningHours Public Property Monday As OpeningHour Public Property Tuesday As OpeningHour Public Property Wednesday As OpeningHour Public Property Thursday As OpeningHour Public Property Friday As OpeningHour Public Property Saturday As OpeningHour Public Property Sunday As OpeningHour End Class Public Enum Parking StreetParking ParkingGarageNearby End Enum Public Enum PaymentOption Visa MasterCard AmericanExpress Diners Vipps End Enum End Namespace End Namespace