/* Options: Date: 2025-12-06 07:26: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: SlotDistrictMyRequestsRequest.* //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/SlotDistrictMyRequests", Verbs="GET,OPTIONS") public static class SlotDistrictMyRequestsRequest implements IReturn { private static Object responseType = SlotDistrictApprovalResponse.class; public Object getResponseType() { return responseType; } } public static class SlotDistrictApprovalResponse { public ResponseStatus ResponseStatus = null; public ArrayList SlotDistrictApproval = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public SlotDistrictApprovalResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getSlotDistrictApproval() { return SlotDistrictApproval; } public SlotDistrictApprovalResponse setSlotDistrictApproval(ArrayList value) { this.SlotDistrictApproval = value; return this; } } public static class SlotDistrictApproval { public Integer SlotDistrictApprovalID = null; public Integer SlotDistrictID = null; public Long SchoolID = null; public Integer AgentID = null; public Integer AVPID = null; public String Status = null; public Date DateCreated = null; public Date DateModified = null; public UUID ModifiedBy = null; public Integer getSlotDistrictApprovalID() { return SlotDistrictApprovalID; } public SlotDistrictApproval setSlotDistrictApprovalID(Integer value) { this.SlotDistrictApprovalID = value; return this; } public Integer getSlotDistrictID() { return SlotDistrictID; } public SlotDistrictApproval setSlotDistrictID(Integer value) { this.SlotDistrictID = value; return this; } public Long getSchoolID() { return SchoolID; } public SlotDistrictApproval setSchoolID(Long value) { this.SchoolID = value; return this; } public Integer getAgentID() { return AgentID; } public SlotDistrictApproval setAgentID(Integer value) { this.AgentID = value; return this; } public Integer getAvpid() { return AVPID; } public SlotDistrictApproval setAvpid(Integer value) { this.AVPID = value; return this; } public String getStatus() { return Status; } public SlotDistrictApproval setStatus(String value) { this.Status = value; return this; } public Date getDateCreated() { return DateCreated; } public SlotDistrictApproval setDateCreated(Date value) { this.DateCreated = value; return this; } public Date getDateModified() { return DateModified; } public SlotDistrictApproval setDateModified(Date value) { this.DateModified = value; return this; } public UUID getModifiedBy() { return ModifiedBy; } public SlotDistrictApproval setModifiedBy(UUID value) { this.ModifiedBy = value; return this; } } public static class SlotDistrictApprovalExtended extends SlotDistrictApproval { public String AgentName = null; public String AVPName = null; public String DistrictName = null; public String SchoolName = null; public String County = null; public String State = null; public String getAgentName() { return AgentName; } public SlotDistrictApprovalExtended setAgentName(String value) { this.AgentName = value; return this; } public String getAvpName() { return AVPName; } public SlotDistrictApprovalExtended setAvpName(String value) { this.AVPName = value; return this; } public String getDistrictName() { return DistrictName; } public SlotDistrictApprovalExtended setDistrictName(String value) { this.DistrictName = value; return this; } public String getSchoolName() { return SchoolName; } public SlotDistrictApprovalExtended setSchoolName(String value) { this.SchoolName = value; return this; } public String getCounty() { return County; } public SlotDistrictApprovalExtended setCounty(String value) { this.County = value; return this; } public String getState() { return State; } public SlotDistrictApprovalExtended setState(String value) { this.State = value; return this; } } }