/* Options: Date: 2025-10-28 00:55:58 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: ProcessBatch.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:collection */ import 'package:servicestack/servicestack.dart'; import 'dart:collection'; class ProcessBatchResponse implements IConvertible { // @DataMember(Order=1) int? Id; // @DataMember(Order=2) ResponseStatus? ResponseStatus; ProcessBatchResponse({this.Id,this.ResponseStatus}); ProcessBatchResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'Id': Id, 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "ProcessBatchResponse"; TypeContext? context = _ctx; } // @Route("/campaign/batch/process/{Id}", "POST") // @DataContract class ProcessBatch implements IReturn, IConvertible, IPost { // @DataMember(Order=1) int? Id; ProcessBatch({this.Id}); ProcessBatch.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; return this; } Map toJson() => { 'Id': Id }; createResponse() => ProcessBatchResponse(); getResponseTypeName() => "ProcessBatchResponse"; getTypeName() => "ProcessBatch"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'duengageapi.uat.scadsoftware.com', types: { 'ProcessBatchResponse': TypeInfo(TypeOf.Class, create:() => ProcessBatchResponse()), 'ProcessBatch': TypeInfo(TypeOf.Class, create:() => ProcessBatch()), });