/* Options: Date: 2025-06-27 21:55:18 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: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: BulkVehicleReprocessRequest.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Mercedes.VehicleManagement.API.ServiceModel; using Mercedes.VehicleManagement.API.Shared.POCO; namespace Mercedes.VehicleManagement.API.ServiceModel { [Route("/v1/vehicle/bulkreprocess/{VehicleType}/{GasId}", "POST")] [Route("/v1/vehicle/bulkreprocess/{VehicleType}", "POST")] public partial class BulkVehicleReprocessRequest : IReturn, IPost { public virtual string GasId { get; set; } public virtual string VehicleType { get; set; } } } namespace Mercedes.VehicleManagement.API.Shared.POCO { public partial class BulkVehicleReprocessResponse { public virtual bool Success { get; set; } public virtual string Message { get; set; } } }