' Options: 'Date: 2026-08-03 13:06:35 '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: CommitBookingReservation.* '''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 CommitBookingReservation Implements IReturn(Of CommitBookingReservationResponse) Implements ICompany ''' '''The opaque session key that identifies the reservation. ''' Public Overridable Property SessionKey As Guid ''' '''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 ''' '''Rebate codes to apply when computing the final price. ''' Public Overridable Property RebateCodeIds As List(Of Integer) = New List(Of Integer) End Class Public Partial Class CommitBookingReservationResponse ''' '''The opaque session key that identifies the reservation. ''' Public Overridable Property SessionKey As Guid ''' '''The BookingReservationStatus value after commit. ''' Public Overridable Property StatusCode As Integer ''' '''The BookingReservationStatus name after commit. ''' Public Overridable Property StatusName As String ''' '''True when the customer still needs to pay (reservation moved to AwaitingPayment). ''' Public Overridable Property PaymentRequired As Boolean ''' '''The created booking id, set when the reservation was converted without payment. ''' Public Overridable Property BookingId As Integer? ''' '''The computed final price of the reservation, if any. ''' Public Overridable Property Price As Decimal? ''' '''The reservation payable reference to use as the checkout InternalReferenceId when PaymentRequired is true. ''' Public Overridable Property InternalReferenceId As String 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