(* Options: Date: 2025-12-06 06:19:43 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.client.prod.86degrees.com //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetVehicleList.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace CommonService.Api.Models.Base 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 [] type IServiceRequest = interface end [] type IHasApiKey = abstract ApiKey:String with get,set [] type VehicleData() = /// ///The ID of the vehicle. /// [] member val Id:Int32 = new Int32() with get,set /// ///Whether the vehicle has license disk information. /// [] member val HasLicense:Boolean = new Boolean() with get,set /// ///The vehicle license number. /// [] member val LicenseNumber:String = null with get,set /// ///The vehicle registration number. /// [] member val RegistrationNumber:String = null with get,set /// ///The vehicle VIN number. /// [] member val Vin:String = null with get,set /// ///The vehicle make. /// [] member val Make:String = null with get,set /// ///The vehicle series. /// [] member val Series:String = null with get,set /// ///The vehicle colour. /// [] member val Colour:String = null with get,set /// ///The vehicle license expiry date in ISO 8601 format. /// [] member val Expiry:String = null with get,set /// ///True if this vehicle's licence expiring soon. /// [] member val ExpiresSoon:Boolean = new Boolean() with get,set /// ///True if this vehicle's license expired. /// [] member val Expired:Boolean = new 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 VehicleListResponse() = inherit ApiServiceResponse() member val Vehicles:IEnumerable = null with get,set [] [] type GetVehicleList() = inherit ApiServiceRequest() interface IReturn /// ///ID Number of the user making this request. /// [] member val IdNumber:String = null with get,set