/* Options: Date: 2025-09-13 16:18:32 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: GetMarketingCodesJobsRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class DataProcessJob implements IConvertible { int? id; String? gasId; String? dateCreated; int? processedRecords; int? status; String? statusName; String? fileName; DataProcessJob({this.id,this.gasId,this.dateCreated,this.processedRecords,this.status,this.statusName,this.fileName}); DataProcessJob.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; gasId = json['gasId']; dateCreated = json['dateCreated']; processedRecords = json['processedRecords']; status = json['status']; statusName = json['statusName']; fileName = json['fileName']; return this; } Map toJson() => { 'id': id, 'gasId': gasId, 'dateCreated': dateCreated, 'processedRecords': processedRecords, 'status': status, 'statusName': statusName, 'fileName': fileName }; getTypeName() => "DataProcessJob"; TypeContext? context = _ctx; } class GetDataProcessJobsResponse implements IConvertible { List? dataProcesses = []; GetDataProcessJobsResponse({this.dataProcesses}); GetDataProcessJobsResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { dataProcesses = JsonConverters.fromJson(json['dataProcesses'],'List',context!); return this; } Map toJson() => { 'dataProcesses': JsonConverters.toJson(dataProcesses,'List',context!) }; getTypeName() => "GetDataProcessJobsResponse"; TypeContext? context = _ctx; } // @Route("/v1/MappedMarketingCodeJobs", "GET") class GetMarketingCodesJobsRequest implements IReturn, IGet, IConvertible { GetMarketingCodesJobsRequest(); GetMarketingCodesJobsRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => GetDataProcessJobsResponse(); getResponseTypeName() => "GetDataProcessJobsResponse"; getTypeName() => "GetMarketingCodesJobsRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'uat_api_vehicle_mgt_mb_dhc.rapp_customers.co.uk', types: { 'DataProcessJob': TypeInfo(TypeOf.Class, create:() => DataProcessJob()), 'GetDataProcessJobsResponse': TypeInfo(TypeOf.Class, create:() => GetDataProcessJobsResponse()), 'List': TypeInfo(TypeOf.Class, create:() => []), 'GetMarketingCodesJobsRequest': TypeInfo(TypeOf.Class, create:() => GetMarketingCodesJobsRequest()), });