(* Options: Date: 2026-08-22 17:53:53 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: GetMyBookingReservations.* //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 MyBookingReservationResult() = /// ///The opaque session key that identifies the reservation. /// [] member val SessionKey:Guid = new Guid() with get,set /// ///The reserved service id. /// [] member val ServiceId:Int32 = new Int32() with get,set /// ///The reserved service name. /// [] member val ServiceName:String = null 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 /// ///Number of reserved spots. /// [] member val NumberOfBookedSpots:Int32 = new Int32() with get,set /// ///When the hold expires (company-local time). /// [] member val ExpirationDatetime:DateTime = new DateTime() with get,set /// ///The company's current time, in the same frame as ExpirationDatetime. /// [] member val ServerTime:DateTime = new DateTime() with get,set /// ///The BookingReservationStatus value (AwaitingPayment). /// [] member val StatusCode:Int32 = new Int32() with get,set /// ///The BookingReservationStatus name. /// [] member val StatusName:String = null with get,set /// ///The currency of the reservation, if resolved. /// [] member val CurrencyId:String = null with get,set /// ///The payable reference to use as the checkout InternalReferenceId when resuming payment. /// [] member val InternalReferenceId:String = null with get,set [] type MyBookingReservationsResponse() = /// ///The caller's awaiting-payment reservations. /// [] member val Results:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] [] type GetMyBookingReservations() = interface IReturn /// ///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