/* Options: Date: 2025-06-27 22:42:22 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: BulkVehicleReprocessRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class BulkVehicleReprocessResponse implements IConvertible { bool? success; String? message; BulkVehicleReprocessResponse({this.success,this.message}); BulkVehicleReprocessResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { success = json['success']; message = json['message']; return this; } Map toJson() => { 'success': success, 'message': message }; getTypeName() => "BulkVehicleReprocessResponse"; TypeContext? context = _ctx; } // @Route("/v1/vehicle/bulkreprocess/{VehicleType}/{GasId}", "POST") // @Route("/v1/vehicle/bulkreprocess/{VehicleType}", "POST") class BulkVehicleReprocessRequest implements IReturn, IPost, IConvertible { String? gasId; String? vehicleType; BulkVehicleReprocessRequest({this.gasId,this.vehicleType}); BulkVehicleReprocessRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { gasId = json['gasId']; vehicleType = json['vehicleType']; return this; } Map toJson() => { 'gasId': gasId, 'vehicleType': vehicleType }; createResponse() => BulkVehicleReprocessResponse(); getResponseTypeName() => "BulkVehicleReprocessResponse"; getTypeName() => "BulkVehicleReprocessRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'uat_api_vehicle_mgt_mb_dhc.rapp_customers.co.uk', types: { 'BulkVehicleReprocessResponse': TypeInfo(TypeOf.Class, create:() => BulkVehicleReprocessResponse()), 'BulkVehicleReprocessRequest': TypeInfo(TypeOf.Class, create:() => BulkVehicleReprocessRequest()), });