/* Options: Date: 2025-12-06 06:21:52 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://galaxymobile.api.client.prod.86degrees.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateVehicleLicense.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/galaxy/vehicle/update", Verbs="POST") open class UpdateVehicleLicense : ApiServiceRequest(), IReturn { /** * ID Number of the user making this request. */ @ApiMember(Description="ID Number of the user making this request.", IsRequired=true) var IdNumber:String? = null /** * The scanned vehicle license disk information. */ @ApiMember(Description="The scanned vehicle license disk information.", IsRequired=true) var Vehicle:VehicleData? = null companion object { private val responseType = UpdateVehicleLicenseResponse::class.java } override fun getResponseType(): Any? = UpdateVehicleLicense.responseType } open class UpdateVehicleLicenseResponse : ApiServiceResponse() { /** * The newly update vehicle information. */ @ApiMember(Description="The newly update vehicle information.", IsRequired=true) var Vehicle:VehicleData? = null } open class ApiServiceRequest : IServiceRequest, IHasApiKey { /** * The API Key required for authentication */ @ApiMember(DataType="string", Description="The API Key required for authentication", IsRequired=true) var ApiKey:String? = null } open interface IServiceRequest { } open interface IHasApiKey { var ApiKey:String? } open class VehicleData { /** * The ID of the vehicle. */ @ApiMember(Description="The ID of the vehicle.") var Id:Int? = null /** * Whether the vehicle has license disk information. */ @ApiMember(Description="Whether the vehicle has license disk information.") var HasLicense:Boolean? = null /** * The vehicle license number. */ @ApiMember(Description="The vehicle license number.") var LicenseNumber:String? = null /** * The vehicle registration number. */ @ApiMember(Description="The vehicle registration number.") var RegistrationNumber:String? = null /** * The vehicle VIN number. */ @ApiMember(Description="The vehicle VIN number.") var Vin:String? = null /** * The vehicle make. */ @ApiMember(Description="The vehicle make.") var Make:String? = null /** * The vehicle series. */ @ApiMember(Description="The vehicle series.") var Series:String? = null /** * The vehicle colour. */ @ApiMember(Description="The vehicle colour.") var Colour:String? = null /** * The vehicle license expiry date in ISO 8601 format. */ @ApiMember(Description="The vehicle license expiry date in ISO 8601 format.") var Expiry:String? = null /** * True if this vehicle's licence expiring soon. */ @ApiMember(Description="True if this vehicle's licence expiring soon.") var ExpiresSoon:Boolean? = null /** * True if this vehicle's license expired. */ @ApiMember(Description="True if this vehicle's license expired.") var Expired:Boolean? = null } open class ApiServiceResponse : IServiceResponse { var Description:String? = null var Heading:String? = null var WasSuccessful:Boolean? = null var ModelState:Object? = null }