/* Options: Date: 2025-06-27 22:57:40 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: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteVehicleExclusionRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/v1/{VehicleType}/Vehicle/Exclusion/{VehicleIdentifier}", "DELETE") class DeleteVehicleExclusionRequest implements IReturn, IDelete, IConvertible { String? vehicleIdentifier; String? vehicleType; DeleteVehicleExclusionRequest({this.vehicleIdentifier,this.vehicleType}); DeleteVehicleExclusionRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { vehicleIdentifier = json['vehicleIdentifier']; vehicleType = json['vehicleType']; return this; } Map toJson() => { 'vehicleIdentifier': vehicleIdentifier, 'vehicleType': vehicleType }; createResponse() => EmptyResponse(); getResponseTypeName() => "EmptyResponse"; getTypeName() => "DeleteVehicleExclusionRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'uat_api_vehicle_mgt_mb_dhc.rapp_customers.co.uk', types: { 'DeleteVehicleExclusionRequest': TypeInfo(TypeOf.Class, create:() => DeleteVehicleExclusionRequest()), });