/* Options: Date: 2025-12-06 06:51:45 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: NoticeReportRequest.* //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/GetNoticeReport/{NoticeType}", Verbs="GET,OPTIONS") // @Route(Path="/v1/DisableNoticeReport/{NoticeType}/{AgentId}", Verbs="PUT,OPTIONS") public static class NoticeReportRequest implements IReturn { public String NoticeType = null; public Integer AgentId = null; public String getNoticeType() { return NoticeType; } public NoticeReportRequest setNoticeType(String value) { this.NoticeType = value; return this; } public Integer getAgentId() { return AgentId; } public NoticeReportRequest setAgentId(Integer value) { this.AgentId = value; return this; } private static Object responseType = NoticeReportResponse.class; public Object getResponseType() { return responseType; } } public static class NoticeReportResponse { public ResponseStatus ResponseStatus = null; public ArrayList Notices = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public NoticeReportResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getNotices() { return Notices; } public NoticeReportResponse setNotices(ArrayList value) { this.Notices = value; return this; } } public static class NoticeAgreement { public Integer Id = null; public Integer AgentId = null; public String AgentName = null; public String Status = null; public Date SignedDate = null; public Date FirstViewed = null; public Date SnoozedDate = null; public Integer getId() { return Id; } public NoticeAgreement setId(Integer value) { this.Id = value; return this; } public Integer getAgentId() { return AgentId; } public NoticeAgreement setAgentId(Integer value) { this.AgentId = value; return this; } public String getAgentName() { return AgentName; } public NoticeAgreement setAgentName(String value) { this.AgentName = value; return this; } public String getStatus() { return Status; } public NoticeAgreement setStatus(String value) { this.Status = value; return this; } public Date getSignedDate() { return SignedDate; } public NoticeAgreement setSignedDate(Date value) { this.SignedDate = value; return this; } public Date getFirstViewed() { return FirstViewed; } public NoticeAgreement setFirstViewed(Date value) { this.FirstViewed = value; return this; } public Date getSnoozedDate() { return SnoozedDate; } public NoticeAgreement setSnoozedDate(Date value) { this.SnoozedDate = value; return this; } } }