(* Options: Date: 2025-12-11 09:28:02 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://reservation.api.dev.86degrees.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: BookingHistory.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace WebService.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type ApiServiceRequest() = /// ///The API Key required for authentication /// [] member val ApiKey:String = null with get,set /// ///Latitude of the user making this request /// [] member val Latitude:Double = new Double() with get,set /// ///Longitude of the user making this request /// [] member val Longitude:Double = new Double() with get,set [] type IServiceRequest = interface end [] type IHasApiKey = abstract ApiKey:String with get,set [] type IHasDeviceInfo = interface end [] type BookingHistoryData() = member val VenueName:String = null with get,set member val FacilityName:String = null with get,set member val Start:String = null with get,set member val End:String = null with get,set member val BilledAmount:Decimal = new Decimal() with get,set member val Finished:Boolean = new Boolean() with get,set [] type UserHistoryDayData() = member val Date:String = null with get,set member val Bookings:ResizeArray = new ResizeArray() with get,set [] type IBookingData = abstract FacilityName:String with get,set abstract Start:String with get,set abstract End:String with get,set abstract BilledAmount:Decimal with get,set abstract Finished:Boolean with get,set [] type ApiServiceResponse() = member val Description:String = null with get,set member val Heading:String = null with get,set member val WasSuccessful:Boolean = new Boolean() with get,set member val ModelState:Object = null with get,set [] type BookingHistoryResponse() = inherit ApiServiceResponse() member val Bookings:ResizeArray = new ResizeArray() with get,set [] [] type BookingHistory() = inherit ApiServiceRequest() interface IReturn