/* Options: Date: 2026-08-12 19:38:03 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: PickupsRequest.* //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/pickups", Verbs="GET,OPTIONS") public static class PickupsRequest implements IReturn { private static Object responseType = PickupsResponse.class; public Object getResponseType() { return responseType; } } public static class PickupsResponse { public ResponseStatus ResponseStatus = null; public ArrayList Pickups = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public PickupsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getPickups() { return Pickups; } public PickupsResponse setPickups(ArrayList value) { this.Pickups = value; return this; } } public static class RecordsPickupDto { public Integer PickupId = null; public String PickupKey = null; public String VendorName = null; public String VendorCert = null; public String Status = null; public String WfLabel = null; public String RunLabel = null; public String ManifestJson = null; public String QuoteJson = null; public String WindowLabel = null; public String VendorCertRef = null; public String LogJson = null; public Integer getPickupId() { return PickupId; } public RecordsPickupDto setPickupId(Integer value) { this.PickupId = value; return this; } public String getPickupKey() { return PickupKey; } public RecordsPickupDto setPickupKey(String value) { this.PickupKey = value; return this; } public String getVendorName() { return VendorName; } public RecordsPickupDto setVendorName(String value) { this.VendorName = value; return this; } public String getVendorCert() { return VendorCert; } public RecordsPickupDto setVendorCert(String value) { this.VendorCert = value; return this; } public String getStatus() { return Status; } public RecordsPickupDto setStatus(String value) { this.Status = value; return this; } public String getWfLabel() { return WfLabel; } public RecordsPickupDto setWfLabel(String value) { this.WfLabel = value; return this; } public String getRunLabel() { return RunLabel; } public RecordsPickupDto setRunLabel(String value) { this.RunLabel = value; return this; } public String getManifestJson() { return ManifestJson; } public RecordsPickupDto setManifestJson(String value) { this.ManifestJson = value; return this; } public String getQuoteJson() { return QuoteJson; } public RecordsPickupDto setQuoteJson(String value) { this.QuoteJson = value; return this; } public String getWindowLabel() { return WindowLabel; } public RecordsPickupDto setWindowLabel(String value) { this.WindowLabel = value; return this; } public String getVendorCertRef() { return VendorCertRef; } public RecordsPickupDto setVendorCertRef(String value) { this.VendorCertRef = value; return this; } public String getLogJson() { return LogJson; } public RecordsPickupDto setLogJson(String value) { this.LogJson = value; return this; } } }