/* Options: Date: 2025-12-06 07:01:01 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: NotificationMessageRequest.* //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/NotificationMessage", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/NotificationMessage/{NotificationMessageId}", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class NotificationMessageRequest implements IReturn { public ArrayList NotificationMessage = new ArrayList(); public ArrayList getNotificationMessage() { return NotificationMessage; } public NotificationMessageRequest setNotificationMessage(ArrayList value) { this.NotificationMessage = value; return this; } private static Object responseType = NotificationMessageResponse.class; public Object getResponseType() { return responseType; } } public static class NotificationMessageResponse { public ResponseStatus ResponseStatus = null; public ArrayList NotificationMessage = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public NotificationMessageResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getNotificationMessage() { return NotificationMessage; } public NotificationMessageResponse setNotificationMessage(ArrayList value) { this.NotificationMessage = value; return this; } } public static class NotificationMessage { public Integer NotificationMessageId = null; public Integer NotificationHeaderId = null; public Integer SenderId = null; public String Subject = null; public String Message = null; public Date DateCreated = null; public String SenderName = null; public Integer getNotificationMessageId() { return NotificationMessageId; } public NotificationMessage setNotificationMessageId(Integer value) { this.NotificationMessageId = value; return this; } public Integer getNotificationHeaderId() { return NotificationHeaderId; } public NotificationMessage setNotificationHeaderId(Integer value) { this.NotificationHeaderId = value; return this; } public Integer getSenderId() { return SenderId; } public NotificationMessage setSenderId(Integer value) { this.SenderId = value; return this; } public String getSubject() { return Subject; } public NotificationMessage setSubject(String value) { this.Subject = value; return this; } public String getMessage() { return Message; } public NotificationMessage setMessage(String value) { this.Message = value; return this; } public Date getDateCreated() { return DateCreated; } public NotificationMessage setDateCreated(Date value) { this.DateCreated = value; return this; } public String getSenderName() { return SenderName; } public NotificationMessage setSenderName(String value) { this.SenderName = value; return this; } } }