/* Options: Date: 2025-09-13 16:18:38 Version: 8.80 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: BulkVehicleReprocessAuditRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class BulkVehicleReprocessHistory implements IConvertible { String? fileName; String? dateStarted; String? dateFinished; int? totalRecords; int? processedRecords; String? gasId; String? status; BulkVehicleReprocessHistory({this.fileName,this.dateStarted,this.dateFinished,this.totalRecords,this.processedRecords,this.gasId,this.status}); BulkVehicleReprocessHistory.fromJson(Map json) { fromMap(json); } fromMap(Map json) { fileName = json['fileName']; dateStarted = json['dateStarted']; dateFinished = json['dateFinished']; totalRecords = json['totalRecords']; processedRecords = json['processedRecords']; gasId = json['gasId']; status = json['status']; return this; } Map toJson() => { 'fileName': fileName, 'dateStarted': dateStarted, 'dateFinished': dateFinished, 'totalRecords': totalRecords, 'processedRecords': processedRecords, 'gasId': gasId, 'status': status }; getTypeName() => "BulkVehicleReprocessHistory"; TypeContext? context = _ctx; } // @Route("/v1/vehicle/GetVehicleReprocessHistory", "GET") class BulkVehicleReprocessAuditRequest implements IReturn, IPost, IConvertible { BulkVehicleReprocessAuditRequest(); BulkVehicleReprocessAuditRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => BulkVehicleReprocessHistory(); getResponseTypeName() => "BulkVehicleReprocessHistory"; getTypeName() => "BulkVehicleReprocessAuditRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'uat_api_vehicle_mgt_mb_dhc.rapp_customers.co.uk', types: { 'BulkVehicleReprocessHistory': TypeInfo(TypeOf.Class, create:() => BulkVehicleReprocessHistory()), 'BulkVehicleReprocessAuditRequest': TypeInfo(TypeOf.Class, create:() => BulkVehicleReprocessAuditRequest()), });