/* Options: Date: 2025-10-28 00:52:26 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DeleteBatchDataAdd.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/delete_batch_data", Verbs="POST") @DataContract public static class DeleteBatchDataAdd implements IReturn { @DataMember(Order=2) public Integer RecordCount = null; @DataMember(Order=3) public String Data = null; @DataMember(Order=4) public Boolean HasError = null; @DataMember(Order=5) public Boolean Merged = null; @DataMember(Order=6) public Long BatchId = null; @DataMember(Order=7) public String Jsondata = null; public Integer getRecordCount() { return RecordCount; } public DeleteBatchDataAdd setRecordCount(Integer value) { this.RecordCount = value; return this; } public String getData() { return Data; } public DeleteBatchDataAdd setData(String value) { this.Data = value; return this; } public Boolean isHasError() { return HasError; } public DeleteBatchDataAdd setHasError(Boolean value) { this.HasError = value; return this; } public Boolean isMerged() { return Merged; } public DeleteBatchDataAdd setMerged(Boolean value) { this.Merged = value; return this; } public Long getBatchId() { return BatchId; } public DeleteBatchDataAdd setBatchId(Long value) { this.BatchId = value; return this; } public String getJsondata() { return Jsondata; } public DeleteBatchDataAdd setJsondata(String value) { this.Jsondata = value; return this; } private static Object responseType = DeleteBatchDataAddResponse.class; public Object getResponseType() { return responseType; } } public static class DeleteBatchDataAddResponse { @DataMember(Order=2) public Integer RecordCount = null; @DataMember(Order=3) public String Data = null; @DataMember(Order=4) public Boolean HasError = null; @DataMember(Order=5) public Boolean Merged = null; @DataMember(Order=6) public Long BatchId = null; @DataMember(Order=7) public String Jsondata = null; @DataMember(Order=9) public ResponseStatus ResponseStatus = null; public Integer getRecordCount() { return RecordCount; } public DeleteBatchDataAddResponse setRecordCount(Integer value) { this.RecordCount = value; return this; } public String getData() { return Data; } public DeleteBatchDataAddResponse setData(String value) { this.Data = value; return this; } public Boolean isHasError() { return HasError; } public DeleteBatchDataAddResponse setHasError(Boolean value) { this.HasError = value; return this; } public Boolean isMerged() { return Merged; } public DeleteBatchDataAddResponse setMerged(Boolean value) { this.Merged = value; return this; } public Long getBatchId() { return BatchId; } public DeleteBatchDataAddResponse setBatchId(Long value) { this.BatchId = value; return this; } public String getJsondata() { return Jsondata; } public DeleteBatchDataAddResponse setJsondata(String value) { this.Jsondata = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public DeleteBatchDataAddResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }