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 'package:servicestack/servicestack.dart';
import 'dart:typed_data';

class NotificationAttachment implements IConvertible
{
    int? NotificationAttachmentId;
    int? NotificationMessageId;
    Uint8List? Attachment = [];
    String? FileName;
    String? MimeType;
    double? FileSizeInKB;
    DateTime? DateCreated;

    NotificationAttachment({this.NotificationAttachmentId,this.NotificationMessageId,this.Attachment,this.FileName,this.MimeType,this.FileSizeInKB,this.DateCreated});
    NotificationAttachment.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        NotificationAttachmentId = json['NotificationAttachmentId'];
        NotificationMessageId = json['NotificationMessageId'];
        Attachment = JsonConverters.fromJson(json['Attachment'],'Uint8List',context!);
        FileName = json['FileName'];
        MimeType = json['MimeType'];
        FileSizeInKB = JsonConverters.toDouble(json['FileSizeInKB']);
        DateCreated = JsonConverters.fromJson(json['DateCreated'],'DateTime',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'NotificationAttachmentId': NotificationAttachmentId,
        'NotificationMessageId': NotificationMessageId,
        'Attachment': JsonConverters.toJson(Attachment,'Uint8List',context!),
        'FileName': FileName,
        'MimeType': MimeType,
        'FileSizeInKB': FileSizeInKB,
        'DateCreated': JsonConverters.toJson(DateCreated,'DateTime',context!)
    };

    getTypeName() => "NotificationAttachment";
    TypeContext? context = _ctx;
}

class NotificationAttachmentResponse implements IConvertible
{
    ResponseStatus? ResponseStatus;
    List<NotificationAttachment>? NotificationAttachment = [];

    NotificationAttachmentResponse({this.ResponseStatus,this.NotificationAttachment});
    NotificationAttachmentResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!);
        NotificationAttachment = JsonConverters.fromJson(json['NotificationAttachment'],'List<NotificationAttachment>',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!),
        'NotificationAttachment': JsonConverters.toJson(NotificationAttachment,'List<NotificationAttachment>',context!)
    };

    getTypeName() => "NotificationAttachmentResponse";
    TypeContext? context = _ctx;
}

class NotificationAttachmentRequest implements IConvertible
{
    List<NotificationAttachment>? NotificationAttachment = [];

    NotificationAttachmentRequest({this.NotificationAttachment});
    NotificationAttachmentRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }

    fromMap(Map<String, dynamic> json) {
        NotificationAttachment = JsonConverters.fromJson(json['NotificationAttachment'],'List<NotificationAttachment>',context!);
        return this;
    }

    Map<String, dynamic> toJson() => {
        'NotificationAttachment': JsonConverters.toJson(NotificationAttachment,'List<NotificationAttachment>',context!)
    };

    getTypeName() => "NotificationAttachmentRequest";
    TypeContext? context = _ctx;
}

TypeContext _ctx = TypeContext(library: 'api.dev.dynamics.trendsic.com', types: <String, TypeInfo> {
    'NotificationAttachment': TypeInfo(TypeOf.Class, create:() => NotificationAttachment()),
    'Uint8List': TypeInfo(TypeOf.Class, create:() => Uint8List(0)),
    'NotificationAttachmentResponse': TypeInfo(TypeOf.Class, create:() => NotificationAttachmentResponse()),
    'List<NotificationAttachment>': TypeInfo(TypeOf.Class, create:() => <NotificationAttachment>[]),
    'NotificationAttachmentRequest': TypeInfo(TypeOf.Class, create:() => NotificationAttachmentRequest()),
});

Dart NotificationAttachmentRequest DTOs

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

HTTP + XML

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: application/xml
Content-Type: application/xml
Content-Length: length

<NotificationAttachmentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
  <NotificationAttachment>
    <NotificationAttachment>
      <Attachment>AA==</Attachment>
      <DateCreated>0001-01-01T00:00:00</DateCreated>
      <FileName>String</FileName>
      <FileSizeInKB>0</FileSizeInKB>
      <MimeType>String</MimeType>
      <NotificationAttachmentId>0</NotificationAttachmentId>
      <NotificationMessageId>0</NotificationMessageId>
    </NotificationAttachment>
  </NotificationAttachment>
</NotificationAttachmentRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<NotificationAttachmentResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CRM.AgencyPlatform.API.Internal">
  <NotificationAttachment>
    <NotificationAttachment>
      <Attachment>AA==</Attachment>
      <DateCreated>0001-01-01T00:00:00</DateCreated>
      <FileName>String</FileName>
      <FileSizeInKB>0</FileSizeInKB>
      <MimeType>String</MimeType>
      <NotificationAttachmentId>0</NotificationAttachmentId>
      <NotificationMessageId>0</NotificationMessageId>
    </NotificationAttachment>
  </NotificationAttachment>
  <ResponseStatus xmlns:d2p1="http://schemas.servicestack.net/types">
    <d2p1:ErrorCode>String</d2p1:ErrorCode>
    <d2p1:Message>String</d2p1:Message>
    <d2p1:StackTrace>String</d2p1:StackTrace>
    <d2p1:Errors>
      <d2p1:ResponseError>
        <d2p1:ErrorCode>String</d2p1:ErrorCode>
        <d2p1:FieldName>String</d2p1:FieldName>
        <d2p1:Message>String</d2p1:Message>
        <d2p1:Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:KeyValueOfstringstring>
            <d5p1:Key>String</d5p1:Key>
            <d5p1:Value>String</d5p1:Value>
          </d5p1:KeyValueOfstringstring>
        </d2p1:Meta>
      </d2p1:ResponseError>
    </d2p1:Errors>
    <d2p1:Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:KeyValueOfstringstring>
        <d3p1:Key>String</d3p1:Key>
        <d3p1:Value>String</d3p1:Value>
      </d3p1:KeyValueOfstringstring>
    </d2p1:Meta>
  </ResponseStatus>
</NotificationAttachmentResponse>