(* Options: Date: 2026-08-02 19:44:42 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: GetBookingReservation.* //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 BookingReservationResponse() = /// ///The opaque session key that identifies the reservation. /// [] member val SessionKey:Guid = new Guid() with get,set /// ///The company id. /// [] member val CompanyId:Guid = new Guid() with get,set /// ///The reserved service id. /// [] member val ServiceId:Int32 = new Int32() with get,set /// ///The reservation start. /// [] member val From:DateTime = new DateTime() with get,set /// ///The reservation end. /// [] member val To:DateTime = new DateTime() with get,set /// ///The BookingReservationStatus value. /// [] member val StatusCode:Int32 = new Int32() with get,set /// ///The BookingReservationStatus name. /// [] member val StatusName:String = null with get,set /// ///When the hold expires (company-local time). /// [] member val ExpirationDatetime:DateTime = new DateTime() with get,set /// ///Number of reserved spots. /// [] member val NumberOfBookedSpots:Int32 = new Int32() with get,set /// ///The computed price of the reservation, if any. /// [] member val Price:Nullable = new Nullable() with get,set /// ///The currency of the price, if any. /// [] member val CurrencyId:String = null with get,set /// ///Ids of the resources held by the reservation. /// [] member val ResourceIds:ResizeArray = null with get,set /// ///The full in-progress selection payload (wizard/session state) as JSON. /// [] member val SelectionPayload:String = null with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] [] [] type GetBookingReservation() = 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