/* Options: Date: 2025-10-27 22:46:49 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: BatchDataErrorsAdd.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; class BatchDataErrorsAddResponse implements IConvertible { // @DataMember(Order=2) int? BatchId; // @DataMember(Order=3) String? Type; // @DataMember(Order=4) String? String; // @DataMember(Order=5) int? Row; // @DataMember(Order=7) ResponseStatus? ResponseStatus; BatchDataErrorsAddResponse({this.BatchId,this.Type,this.String,this.Row,this.ResponseStatus}); BatchDataErrorsAddResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { BatchId = json['BatchId']; Type = json['Type']; String = json['String']; Row = json['Row']; ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'BatchId': BatchId, 'Type': Type, 'String': String, 'Row': Row, 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "BatchDataErrorsAddResponse"; TypeContext? context = _ctx; } // @Route("/batch_data_errors", "POST") // @DataContract class BatchDataErrorsAdd implements IReturn, IConvertible, IPost { // @DataMember(Order=2) int? BatchId; // @DataMember(Order=3) String? Type; // @DataMember(Order=4) String? String; // @DataMember(Order=5) int? Row; BatchDataErrorsAdd({this.BatchId,this.Type,this.String,this.Row}); BatchDataErrorsAdd.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() => BatchDataErrorsAddResponse(); getResponseTypeName() => "BatchDataErrorsAddResponse"; getTypeName() => "BatchDataErrorsAdd"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'BatchDataErrorsAddResponse': TypeInfo(TypeOf.Class, create:() => BatchDataErrorsAddResponse()), 'BatchDataErrorsAdd': TypeInfo(TypeOf.Class, create:() => BatchDataErrorsAdd()), });