/* Options: Date: 2026-08-12 19:15:52 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: PoolsRequest.* //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/logistics/pools", Verbs="GET,OPTIONS") public static class PoolsRequest implements IReturn { private static Object responseType = PoolsResponse.class; public Object getResponseType() { return responseType; } } public static class PoolsResponse { public ResponseStatus ResponseStatus = null; public ArrayList Pools = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public PoolsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getPools() { return Pools; } public PoolsResponse setPools(ArrayList value) { this.Pools = value; return this; } } public static class RecordsPoolDto { public Integer PoolId = null; public String PoolKey = null; public String Site = null; public String Method = null; public String Icon = null; public String Note = null; public String ItemsJson = null; public Integer Boxes = null; public Integer Pages = null; public Integer WeightLbs = null; public Integer ThBoxes = null; public Integer ThWeight = null; public String Status = null; public Integer getPoolId() { return PoolId; } public RecordsPoolDto setPoolId(Integer value) { this.PoolId = value; return this; } public String getPoolKey() { return PoolKey; } public RecordsPoolDto setPoolKey(String value) { this.PoolKey = value; return this; } public String getSite() { return Site; } public RecordsPoolDto setSite(String value) { this.Site = value; return this; } public String getMethod() { return Method; } public RecordsPoolDto setMethod(String value) { this.Method = value; return this; } public String getIcon() { return Icon; } public RecordsPoolDto setIcon(String value) { this.Icon = value; return this; } public String getNote() { return Note; } public RecordsPoolDto setNote(String value) { this.Note = value; return this; } public String getItemsJson() { return ItemsJson; } public RecordsPoolDto setItemsJson(String value) { this.ItemsJson = value; return this; } public Integer getBoxes() { return Boxes; } public RecordsPoolDto setBoxes(Integer value) { this.Boxes = value; return this; } public Integer getPages() { return Pages; } public RecordsPoolDto setPages(Integer value) { this.Pages = value; return this; } public Integer getWeightLbs() { return WeightLbs; } public RecordsPoolDto setWeightLbs(Integer value) { this.WeightLbs = value; return this; } public Integer getThBoxes() { return ThBoxes; } public RecordsPoolDto setThBoxes(Integer value) { this.ThBoxes = value; return this; } public Integer getThWeight() { return ThWeight; } public RecordsPoolDto setThWeight(Integer value) { this.ThWeight = value; return this; } public String getStatus() { return Status; } public RecordsPoolDto setStatus(String value) { this.Status = value; return this; } } }