(* Options: Date: 2024-07-03 13:02:14 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetAllBookingQueueForUser.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Dtos open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open System.IO [] type BookingUserQueueItemResponse() = member val BookingUserQueueId:Int32 = new Int32() with get,set member val CompanyId:Guid = new Guid() with get,set member val CustomerId:Guid = new Guid() with get,set member val ServiceId:Int32 = new Int32() with get,set member val From:DateTime = new DateTime() with get,set member val To:DateTime = new DateTime() with get,set member val StatusCode:Int32 = new Int32() with get,set member val StatusName:String = null with get,set member val SendConfirmationTime:Nullable = new Nullable() with get,set member val Quantities:ResizeArray = new ResizeArray() with get,set member val Service:ServiceInfoResponse = null with get,set member val Company:CompanyInfoResponse = null with get,set [] type GetAllBookingQueueForUserResponse() = member val BookingUserQueueResponseList:ResizeArray = new ResizeArray() with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] [] [] type GetAllBookingQueueForUser() = interface IReturn /// ///The user id for your profile. If not set it will set it automatically from your session /// [] member val UserId:Nullable = new Nullable() with get,set member val DateStart:Nullable = new Nullable() with get,set member val DateEnd:Nullable = new Nullable() with get,set /// ///If you want to include the service information for the booking /// [] member val IncludeServiceInformation:Boolean = new Boolean() with get,set /// ///If you want to include the company information for the booking /// [] member val IncludeCompanyInformation:Boolean = new Boolean() with get,set