/* Options: Date: 2025-12-06 07:10:00 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: NoticeAgreementRequest.* //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/noticeAgreement/{AgentId}", Verbs="GET,POST,OPTIONS") // @Route(Path="/v1/noticeAgreement/{AgentId}/{Status}", Verbs="PUT,OPTIONS") public static class NoticeAgreementRequest implements IReturn { public Integer AgentId = null; public String Status = null; public Integer getAgentId() { return AgentId; } public NoticeAgreementRequest setAgentId(Integer value) { this.AgentId = value; return this; } public String getStatus() { return Status; } public NoticeAgreementRequest setStatus(String value) { this.Status = value; return this; } private static Object responseType = NoticeAgreementResponse.class; public Object getResponseType() { return responseType; } } public static class NoticeAgreementResponse { public ResponseStatus ResponseStatus = null; public NoticeAgreement AgentAgreement = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public NoticeAgreementResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public NoticeAgreement getAgentAgreement() { return AgentAgreement; } public NoticeAgreementResponse setAgentAgreement(NoticeAgreement value) { this.AgentAgreement = 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; } } }