(* Options: Date: 2026-08-02 19:40:35 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: CommitBookingReservation.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Dtos open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open ServiceStack.Data open System.Net open System.Net.Http.Headers [] type ICompany = abstract CompanyId:Nullable with get,set [] type CommitBookingReservationResponse() = /// ///The opaque session key that identifies the reservation. /// [] member val SessionKey:Guid = new Guid() with get,set /// ///The BookingReservationStatus value after commit. /// [] member val StatusCode:Int32 = new Int32() with get,set /// ///The BookingReservationStatus name after commit. /// [] member val StatusName:String = null with get,set /// ///True when the customer still needs to pay (reservation moved to AwaitingPayment). /// [] member val PaymentRequired:Boolean = new Boolean() with get,set /// ///The created booking id, set when the reservation was converted without payment. /// [] member val BookingId:Nullable = new Nullable() with get,set /// ///The computed final price of the reservation, if any. /// [] member val Price:Nullable = new Nullable() with get,set /// ///The reservation payable reference to use as the checkout InternalReferenceId when PaymentRequired is true. /// [] member val InternalReferenceId:String = null with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] [] [] [] type CommitBookingReservation() = interface IReturn /// ///The opaque session key that identifies the reservation. /// [] member val SessionKey:Guid = new Guid() with get,set /// ///The company id, if empty will use the company id for the user you are logged in with. /// [] member val CompanyId:Nullable = new Nullable() with get,set /// ///Rebate codes to apply when computing the final price. /// [] member val RebateCodeIds:ResizeArray = null with get,set