/* Options: Date: 2025-10-28 05:16:28 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: InsertBatchLookup.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/insert_batch", Verbs="GET") @DataContract public static class InsertBatchLookup implements IReturn> { @DataMember(Order=2) public Date CreatedDate = null; @DataMember(Order=3) public String FileName = null; @DataMember(Order=4) public String FileSize = null; @DataMember(Order=5) public Integer RecordCount = null; @DataMember(Order=6) public String FieldMapping = null; @DataMember(Order=7) public Integer UserAuthId = null; @DataMember(Order=8) public UUID RowVersionGuid = null; @DataMember(Order=9) public Integer InsertedRecords = null; @DataMember(Order=10) public Integer UpdatedRecords = null; public Date getCreatedDate() { return CreatedDate; } public InsertBatchLookup setCreatedDate(Date value) { this.CreatedDate = value; return this; } public String getFileName() { return FileName; } public InsertBatchLookup setFileName(String value) { this.FileName = value; return this; } public String getFileSize() { return FileSize; } public InsertBatchLookup setFileSize(String value) { this.FileSize = value; return this; } public Integer getRecordCount() { return RecordCount; } public InsertBatchLookup setRecordCount(Integer value) { this.RecordCount = value; return this; } public String getFieldMapping() { return FieldMapping; } public InsertBatchLookup setFieldMapping(String value) { this.FieldMapping = value; return this; } public Integer getUserAuthId() { return UserAuthId; } public InsertBatchLookup setUserAuthId(Integer value) { this.UserAuthId = value; return this; } public UUID getRowVersionGuid() { return RowVersionGuid; } public InsertBatchLookup setRowVersionGuid(UUID value) { this.RowVersionGuid = value; return this; } public Integer getInsertedRecords() { return InsertedRecords; } public InsertBatchLookup setInsertedRecords(Integer value) { this.InsertedRecords = value; return this; } public Integer getUpdatedRecords() { return UpdatedRecords; } public InsertBatchLookup setUpdatedRecords(Integer value) { this.UpdatedRecords = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }