(* Options: Date: 2025-06-28 00:38:19 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://uat-api-vehicle-mgt-mb-dhc.rapp-customers.co.uk //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: DashboardCsvReportsRequest.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Mercedes.VehicleManagement.API.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type ReportFilterType = | list = 0 | list_like = 1 | date = 2 | range = 3 [] type ReportFilter() = member val Type:ReportFilterType = new ReportFilterType() with get,set member val Values:IEnumerable = null with get,set member val Start:Nullable = new Nullable() with get,set member val End:Nullable = new Nullable() with get,set member val HigherThan:Nullable = new Nullable() with get,set member val LowerThan:Nullable = new Nullable() with get,set [] type DashboardReportResult() = member val TotalCount:Int32 = new Int32() with get,set member val ReportResult:IEnumerable = null with get,set [] [] type DashboardCsvReportsRequest() = interface IReturn interface IPost /// ///Report Name /// [] member val ReportName:String = null with get,set /// ///Filters /// [] member val Filters:Dictionary = null with get,set