/* Options: Date: 2025-12-06 09:07:46 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: SlotNoteApprovalRequest.* //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/SlotNoteApproval", Verbs="GET") // @Route(Path="/v1/SlotNoteApproval/{ID}", Verbs="POST,OPTIONS") public static class SlotNoteApprovalRequest implements IReturn { public Integer ID = null; public Boolean ApprovalStatus = null; public Integer getId() { return ID; } public SlotNoteApprovalRequest setId(Integer value) { this.ID = value; return this; } public Boolean isApprovalStatus() { return ApprovalStatus; } public SlotNoteApprovalRequest setApprovalStatus(Boolean value) { this.ApprovalStatus = value; return this; } private static Object responseType = SlotNoteResponse.class; public Object getResponseType() { return responseType; } } public static class SlotNoteResponse { public ResponseStatus ResponseStatus = null; public ArrayList SlotNotes = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public SlotNoteResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getSlotNotes() { return SlotNotes; } public SlotNoteResponse setSlotNotes(ArrayList value) { this.SlotNotes = value; return this; } } public static class SlotNote { public Integer ID = null; public Integer SlotDistrictID = null; public String Note = null; public Date DateCreated = null; public Integer CreatedBy = null; public String AgentName = null; public Boolean IsAdminNote = null; public Boolean ApprovalPending = null; public Integer getId() { return ID; } public SlotNote setId(Integer value) { this.ID = value; return this; } public Integer getSlotDistrictID() { return SlotDistrictID; } public SlotNote setSlotDistrictID(Integer value) { this.SlotDistrictID = value; return this; } public String getNote() { return Note; } public SlotNote setNote(String value) { this.Note = value; return this; } public Date getDateCreated() { return DateCreated; } public SlotNote setDateCreated(Date value) { this.DateCreated = value; return this; } public Integer getCreatedBy() { return CreatedBy; } public SlotNote setCreatedBy(Integer value) { this.CreatedBy = value; return this; } public String getAgentName() { return AgentName; } public SlotNote setAgentName(String value) { this.AgentName = value; return this; } public Boolean getIsAdminNote() { return IsAdminNote; } public SlotNote setIsAdminNote(Boolean value) { this.IsAdminNote = value; return this; } public Boolean isApprovalPending() { return ApprovalPending; } public SlotNote setApprovalPending(Boolean value) { this.ApprovalPending = value; return this; } } }