/* Options: Date: 2026-07-28 12:50:23 SwiftVersion: 6.0 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://uat-api-vehicle-mgt-mb-dhc.rapp-customers.co.uk //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: UpdateVehicleV2Request.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/v2/{VehicleType}/Vehicle/UpdateVehicle", "POST") public class UpdateVehicleV2Request : IReturn, IPost, Codable { public typealias Return = ProcessResult public var vehicleIdentifier:String? public var vin:String? public var vehicleType:String? required public init(){} } public class ProcessResult : Codable { public var success:Bool? public var rejected:Bool? public var mappedVehicle:OpenSearchVehicle? public var action:ActionType? required public init(){} } public enum ActionType : String, Codable { case Insert case Update case Offline case NoAction case Error }