' Options: 'Date: 2026-08-22 17:57:26 'Version: 10.05 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://testapi.bokamera.se ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: False '''ExportValueTypes: False 'IncludeTypes: GetMyBookingReservations.* '''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 System.Globalization Imports ServiceStack.Data Imports System.Net Imports System.Net.Http.Headers Imports BokaMera.API.ServiceModel.Interfaces Imports BokaMera.API.ServiceModel.Dtos Namespace Global Namespace BokaMera.API.ServiceModel.Dtos Public Partial Class GetMyBookingReservations Implements IReturn(Of MyBookingReservationsResponse) Implements ICompany ''' '''The company id, if empty will use the company id for the user you are logged in with. ''' Public Overridable Property CompanyId As Guid? Implements ICompany.CompanyId End Class Public Partial Class MyBookingReservationResult ''' '''The opaque session key that identifies the reservation. ''' Public Overridable Property SessionKey As Guid ''' '''The reserved service id. ''' Public Overridable Property ServiceId As Integer ''' '''The reserved service name. ''' Public Overridable Property ServiceName As String ''' '''The reservation start. ''' Public Overridable Property From As Date ''' '''The reservation end. ''' Public Overridable Property [To] As Date ''' '''Number of reserved spots. ''' Public Overridable Property NumberOfBookedSpots As Integer ''' '''When the hold expires (company-local time). ''' Public Overridable Property ExpirationDatetime As Date ''' '''The company's current time, in the same frame as ExpirationDatetime. ''' Public Overridable Property ServerTime As Date ''' '''The BookingReservationStatus value (AwaitingPayment). ''' Public Overridable Property StatusCode As Integer ''' '''The BookingReservationStatus name. ''' Public Overridable Property StatusName As String ''' '''The currency of the reservation, if resolved. ''' Public Overridable Property CurrencyId As String ''' '''The payable reference to use as the checkout InternalReferenceId when resuming payment. ''' Public Overridable Property InternalReferenceId As String End Class Public Partial Class MyBookingReservationsResponse ''' '''The caller's awaiting-payment reservations. ''' Public Overridable Property Results As List(Of MyBookingReservationResult) = New List(Of MyBookingReservationResult) Public Overridable Property ResponseStatus As ResponseStatus End Class End Namespace Namespace BokaMera.API.ServiceModel.Interfaces Public Interface ICompany Property CompanyId As Guid? End Interface End Namespace End Namespace