Trendsic Platform Service

<back to all web services

NotificationAttachmentRequest

Requires Authentication
Requires any of the roles:Agent, Administrator, Agent, Administrator, Agent, Administrator, Agent, Administrator
The following routes are available for this service:
GET,POST,PUT,DELETE,OPTIONS/v1/NotificationAttachment/{NotificationAttachmentId}
GET,POST,PUT,DELETE,OPTIONS/v1/NotificationAttachment
import java.math.*;
import java.util.*;
import java.io.InputStream;
import net.servicestack.client.*;

public class dtos
{

    public static class NotificationAttachmentRequest
    {
        public ArrayList<NotificationAttachment> NotificationAttachment = new ArrayList<NotificationAttachment>();
        
        public ArrayList<NotificationAttachment> getNotificationAttachment() { return NotificationAttachment; }
        public NotificationAttachmentRequest setNotificationAttachment(ArrayList<NotificationAttachment> 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; }
    }

    public static class NotificationAttachmentResponse
    {
        public ResponseStatus ResponseStatus = null;
        public ArrayList<NotificationAttachment> NotificationAttachment = new ArrayList<NotificationAttachment>();
        
        public ResponseStatus getResponseStatus() { return ResponseStatus; }
        public NotificationAttachmentResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; }
        public ArrayList<NotificationAttachment> getNotificationAttachment() { return NotificationAttachment; }
        public NotificationAttachmentResponse setNotificationAttachment(ArrayList<NotificationAttachment> value) { this.NotificationAttachment = value; return this; }
    }

}

Java NotificationAttachmentRequest DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other

HTTP + OTHER

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /v1/NotificationAttachment/{NotificationAttachmentId} HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length

{"NotificationAttachment":[{"NotificationAttachmentId":0,"NotificationMessageId":0,"Attachment":"AA==","FileName":"String","MimeType":"String","FileSizeInKB":0,"DateCreated":"0001-01-01T00:00:00.0000000"}]}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}},"NotificationAttachment":[{"NotificationAttachmentId":0,"NotificationMessageId":0,"Attachment":"AA==","FileName":"String","MimeType":"String","FileSizeInKB":0,"DateCreated":"0001-01-01T00:00:00.0000000"}]}