/* Options: Date: 2025-12-06 10:21:49 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: AssignedFactFinderCodeRequest.* //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/AssignedFactFinderCode", Verbs="GET,OPTIONS") public static class AssignedFactFinderCodeRequest implements IReturn { private static Object responseType = AssignedFactFinderCodeResponse.class; public Object getResponseType() { return responseType; } } public static class AssignedFactFinderCodeResponse { public ResponseStatus ResponseStatus = null; public ArrayList Assigned = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public AssignedFactFinderCodeResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getAssigned() { return Assigned; } public AssignedFactFinderCodeResponse setAssigned(ArrayList value) { this.Assigned = value; return this; } } public static class FactFinderCodeSet { public Integer AgentId = null; public String AgentName = null; public String TrackingNumber = null; public String ShipDate = null; public Date CreatedDate = null; public Integer StartCode = null; public Integer EndCode = null; public Integer Count = null; public Integer getAgentId() { return AgentId; } public FactFinderCodeSet setAgentId(Integer value) { this.AgentId = value; return this; } public String getAgentName() { return AgentName; } public FactFinderCodeSet setAgentName(String value) { this.AgentName = value; return this; } public String getTrackingNumber() { return TrackingNumber; } public FactFinderCodeSet setTrackingNumber(String value) { this.TrackingNumber = value; return this; } public String getShipDate() { return ShipDate; } public FactFinderCodeSet setShipDate(String value) { this.ShipDate = value; return this; } public Date getCreatedDate() { return CreatedDate; } public FactFinderCodeSet setCreatedDate(Date value) { this.CreatedDate = value; return this; } public Integer getStartCode() { return StartCode; } public FactFinderCodeSet setStartCode(Integer value) { this.StartCode = value; return this; } public Integer getEndCode() { return EndCode; } public FactFinderCodeSet setEndCode(Integer value) { this.EndCode = value; return this; } public Integer getCount() { return Count; } public FactFinderCodeSet setCount(Integer value) { this.Count = value; return this; } } }