(* Options: Date: 2024-12-15 21:01:06 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: SearchAllBookingsRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Application.Interfaces open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type GetOperationUnTenanted<'TResponse>() = interface IGet member val Embed:String = null with get,set [] type IHasGetOptions = abstract Embed:String with get,set [] type SearchOperationUnTenanted<'TResponse>() = inherit GetOperationUnTenanted() member val Distinct:String = null with get,set member val Limit:Nullable = new Nullable() with get,set member val Offset:Nullable = new Nullable() with get,set member val Sort:String = null with get,set member val Filter:String = null with get,set member val Search:String = null with get,set [] type IHasSearchOptions = abstract Limit:Nullable with get,set abstract Offset:Nullable with get,set abstract Sort:String with get,set abstract Filter:String with get,set abstract Search:String with get,set [] type ITenantedRequest = abstract OrganisationId:String with get,set [] type SearchOperationTenanted<'TResponse>() = inherit SearchOperationUnTenanted() member val OrganisationId:String = null with get,set type SortDirection = | Ascending = 0 | Descending = 1 [] type Sorting() = member val By:String = null with get,set member val Direction:SortDirection = new SortDirection() with get,set [] type Filtering() = member val Fields:ResizeArray = new ResizeArray() with get,set member val Search:String = null with get,set [] type SearchMetadata() = member val Total:Int32 = new Int32() with get,set member val Limit:Int32 = new Int32() with get,set member val Offset:Int32 = new Int32() with get,set member val Sort:Sorting = null with get,set member val Filter:Filtering = null with get,set [] type SearchOperationResponse() = member val Metadata:SearchMetadata = null 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 SearchAllBookingsResponse() = inherit SearchOperationResponse() member val ResponseStatus:ResponseStatus = null with get,set member val Bookings:ResizeArray = new ResizeArray() with get,set [] [] type SearchAllBookingsRequest() = inherit SearchOperationTenanted() interface IReturn member val StartUtc:Nullable = new Nullable() with get,set member val EndUtc:Nullable = new Nullable() with get,set