/* Options: Date: 2025-10-27 21:37:09 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: BatchDataErrorsLookup.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/batch_data_errors", "GET") // @DataContract class BatchDataErrorsLookup implements IReturn>, IConvertible, IGet { // @DataMember(Order=2) int? BatchId; // @DataMember(Order=3) String? Type; // @DataMember(Order=4) String? String; // @DataMember(Order=5) int? Row; BatchDataErrorsLookup({this.BatchId,this.Type,this.String,this.Row}); BatchDataErrorsLookup.fromJson(Map json) { fromMap(json); } fromMap(Map json) { BatchId = json['BatchId']; Type = json['Type']; String = json['String']; Row = json['Row']; return this; } Map toJson() => { 'BatchId': BatchId, 'Type': Type, 'String': String, 'Row': Row }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "BatchDataErrorsLookup"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'BatchDataErrorsLookupResponse': TypeInfo(TypeOf.Class, create:() => BatchDataErrorsLookupResponse()), 'BatchDataErrorsLookup': TypeInfo(TypeOf.Class, create:() => BatchDataErrorsLookup()), });