/* Options: Date: 2025-10-28 00:56:10 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: InsertBatchDataLookup.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; // @Route("/insert_batch_data", "GET") // @DataContract class InsertBatchDataLookup implements IReturn>, IConvertible, IGet { // @DataMember(Order=2) String? Data; // @DataMember(Order=3) bool? HasError; // @DataMember(Order=4) bool? Merged; // @DataMember(Order=5) int? BatchId; // @DataMember(Order=6) String? Jsondata; // @DataMember(Order=7) String? ErrorData; InsertBatchDataLookup({this.Data,this.HasError,this.Merged,this.BatchId,this.Jsondata,this.ErrorData}); InsertBatchDataLookup.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Data = json['Data']; HasError = json['HasError']; Merged = json['Merged']; BatchId = json['BatchId']; Jsondata = json['Jsondata']; ErrorData = json['ErrorData']; return this; } Map toJson() => { 'Data': Data, 'HasError': HasError, 'Merged': Merged, 'BatchId': BatchId, 'Jsondata': Jsondata, 'ErrorData': ErrorData }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "InsertBatchDataLookup"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'List': TypeInfo(TypeOf.Class, create:() => []), 'InsertBatchDataLookupResponse': TypeInfo(TypeOf.Class, create:() => InsertBatchDataLookupResponse()), 'InsertBatchDataLookup': TypeInfo(TypeOf.Class, create:() => InsertBatchDataLookup()), });