/* Options: Date: 2025-12-06 09:37:39 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: NoticeLogRequest.* //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/NoticeLog", Verbs="POST,OPTIONS") // @Route(Path="/v1/NoticeLog/{NoticeLogId}", Verbs="POST,OPTIONS") public static class NoticeLogRequest implements IReturn { public ArrayList NoticeLog = new ArrayList(); public ArrayList getNoticeLog() { return NoticeLog; } public NoticeLogRequest setNoticeLog(ArrayList value) { this.NoticeLog = value; return this; } private static Object responseType = NoticeLogResponse.class; public Object getResponseType() { return responseType; } } public static class NoticeLogResponse { public ResponseStatus ResponseStatus = null; public ArrayList NoticeLog = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public NoticeLogResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getNoticeLog() { return NoticeLog; } public NoticeLogResponse setNoticeLog(ArrayList value) { this.NoticeLog = value; return this; } } public static class NoticeLog { public Integer NoticeLogId = null; public Integer NoticeId = null; public Integer AgentId = null; public Date AgreeToDate = null; public Integer getNoticeLogId() { return NoticeLogId; } public NoticeLog setNoticeLogId(Integer value) { this.NoticeLogId = value; return this; } public Integer getNoticeId() { return NoticeId; } public NoticeLog setNoticeId(Integer value) { this.NoticeId = value; return this; } public Integer getAgentId() { return AgentId; } public NoticeLog setAgentId(Integer value) { this.AgentId = value; return this; } public Date getAgreeToDate() { return AgreeToDate; } public NoticeLog setAgreeToDate(Date value) { this.AgreeToDate = value; return this; } } }