/* Options: Date: 2026-08-12 20:36:01 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ImagingBatchesRequest.* //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="/v1/records/imaging/batches", Verbs="GET,OPTIONS") public static class ImagingBatchesRequest implements IReturn { private static Object responseType = ImagingBatchesResponse.class; public Object getResponseType() { return responseType; } } public static class ImagingBatchesResponse { public ResponseStatus ResponseStatus = null; public ArrayList Batches = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public ImagingBatchesResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getBatches() { return Batches; } public ImagingBatchesResponse setBatches(ArrayList value) { this.Batches = value; return this; } } public static class ImagingBatchDto { public Integer BatchId = null; public String BatchKey = null; public String Title = null; public String CreatedByLbl = null; public String CreatedLabel = null; public String Stage = null; public String Dpi = null; public String Color = null; public Boolean DestroyAfter = null; public String ContainersJson = null; public String QaJson = null; public String ImportReceipt = null; public String LogJson = null; public Integer getBatchId() { return BatchId; } public ImagingBatchDto setBatchId(Integer value) { this.BatchId = value; return this; } public String getBatchKey() { return BatchKey; } public ImagingBatchDto setBatchKey(String value) { this.BatchKey = value; return this; } public String getTitle() { return Title; } public ImagingBatchDto setTitle(String value) { this.Title = value; return this; } public String getCreatedByLbl() { return CreatedByLbl; } public ImagingBatchDto setCreatedByLbl(String value) { this.CreatedByLbl = value; return this; } public String getCreatedLabel() { return CreatedLabel; } public ImagingBatchDto setCreatedLabel(String value) { this.CreatedLabel = value; return this; } public String getStage() { return Stage; } public ImagingBatchDto setStage(String value) { this.Stage = value; return this; } public String getDpi() { return Dpi; } public ImagingBatchDto setDpi(String value) { this.Dpi = value; return this; } public String getColor() { return Color; } public ImagingBatchDto setColor(String value) { this.Color = value; return this; } public Boolean isDestroyAfter() { return DestroyAfter; } public ImagingBatchDto setDestroyAfter(Boolean value) { this.DestroyAfter = value; return this; } public String getContainersJson() { return ContainersJson; } public ImagingBatchDto setContainersJson(String value) { this.ContainersJson = value; return this; } public String getQaJson() { return QaJson; } public ImagingBatchDto setQaJson(String value) { this.QaJson = value; return this; } public String getImportReceipt() { return ImportReceipt; } public ImagingBatchDto setImportReceipt(String value) { this.ImportReceipt = value; return this; } public String getLogJson() { return LogJson; } public ImagingBatchDto setLogJson(String value) { this.LogJson = value; return this; } } }