/* Options: Date: 2025-10-28 03:40:40 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: BatchProcessErrorsViewQuery.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; class BatchProcessErrorsView implements IConvertible { int? Id; int? BatchId; int? BatchDataId; String? Message; String? Data; BatchProcessErrorsView({this.Id,this.BatchId,this.BatchDataId,this.Message,this.Data}); BatchProcessErrorsView.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; BatchId = json['BatchId']; BatchDataId = json['BatchDataId']; Message = json['Message']; Data = json['Data']; return this; } Map toJson() => { 'Id': Id, 'BatchId': BatchId, 'BatchDataId': BatchDataId, 'Message': Message, 'Data': Data }; getTypeName() => "BatchProcessErrorsView"; TypeContext? context = _ctx; } // @Route("/batch_process_errors_view", "GET") // @Route("/batch_process_errors_view/{BatchId}", "GET") // @DataContract class BatchProcessErrorsViewQuery extends QueryDb implements IReturn>, IGet, IConvertible { BatchProcessErrorsViewQuery(); BatchProcessErrorsViewQuery.fromJson(Map json) : super.fromJson(json); fromMap(Map json) { super.fromMap(json); return this; } Map toJson() => super.toJson(); createResponse() => QueryResponse(); getResponseTypeName() => "QueryResponse"; getTypeName() => "BatchProcessErrorsViewQuery"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'BatchProcessErrorsView': TypeInfo(TypeOf.Class, create:() => BatchProcessErrorsView()), 'QueryResponse': TypeInfo(TypeOf.Class, create:() => QueryResponse()), 'BatchProcessErrorsViewQuery': TypeInfo(TypeOf.Class, create:() => BatchProcessErrorsViewQuery()), 'List': TypeInfo(TypeOf.Class, create:() => []), });