(* Options: Date: 2024-12-15 19:53:32 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://staging-api.billiecart.com.au //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: CreateBookingRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Application.Interfaces.Resources open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type PostOperationUnTenanted<'TResponse>() = interface IPost [] type PostOperationTenanted<'TResponse>() = inherit PostOperationUnTenanted() member val OrganisationId:String = null with get,set [] type ITenantedRequest = abstract OrganisationId:String with get,set [] type Booking() = member val StartUtc:DateTime = new DateTime() with get,set member val EndUtc:DateTime = new DateTime() with get,set member val BorrowerId:String = null with get,set member val CarId:String = null with get,set member val Id:String = null with get,set [] type IIdentifiableResource = abstract Id:String with get,set [] type CreateBookingResponse() = member val ResponseStatus:ResponseStatus = null with get,set member val Booking:Booking = null with get,set [] [] type CreateBookingRequest() = inherit PostOperationTenanted() interface IReturn member val CarId:String = null with get,set member val StartUtc:DateTime = new DateTime() with get,set member val EndUtc:Nullable = new Nullable() with get,set