/* Options: Date: 2025-12-06 09:39:58 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: NotificationAttachmentRequest.* //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/NotificationAttachment", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/NotificationAttachment/{NotificationAttachmentId}", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class NotificationAttachmentRequest implements IReturn { public ArrayList NotificationAttachment = new ArrayList(); public ArrayList getNotificationAttachment() { return NotificationAttachment; } public NotificationAttachmentRequest setNotificationAttachment(ArrayList value) { this.NotificationAttachment = value; return this; } private static Object responseType = NotificationAttachmentResponse.class; public Object getResponseType() { return responseType; } } public static class NotificationAttachmentResponse { public ResponseStatus ResponseStatus = null; public ArrayList NotificationAttachment = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public NotificationAttachmentResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getNotificationAttachment() { return NotificationAttachment; } public NotificationAttachmentResponse setNotificationAttachment(ArrayList value) { this.NotificationAttachment = value; return this; } } public static class NotificationAttachment { public Integer NotificationAttachmentId = null; public Integer NotificationMessageId = null; public byte[] Attachment = new byte[]{}; public String FileName = null; public String MimeType = null; public Double FileSizeInKB = null; public Date DateCreated = null; public Integer getNotificationAttachmentId() { return NotificationAttachmentId; } public NotificationAttachment setNotificationAttachmentId(Integer value) { this.NotificationAttachmentId = value; return this; } public Integer getNotificationMessageId() { return NotificationMessageId; } public NotificationAttachment setNotificationMessageId(Integer value) { this.NotificationMessageId = value; return this; } public byte[] getAttachment() { return Attachment; } public NotificationAttachment setAttachment(byte[] value) { this.Attachment = value; return this; } public String getFileName() { return FileName; } public NotificationAttachment setFileName(String value) { this.FileName = value; return this; } public String getMimeType() { return MimeType; } public NotificationAttachment setMimeType(String value) { this.MimeType = value; return this; } public Double getFileSizeInKB() { return FileSizeInKB; } public NotificationAttachment setFileSizeInKB(Double value) { this.FileSizeInKB = value; return this; } public Date getDateCreated() { return DateCreated; } public NotificationAttachment setDateCreated(Date value) { this.DateCreated = value; return this; } } }