| Requires any of the roles: | Agent, Administrator, Agent, Administrator, Agent, Administrator, Agent, Administrator |
| 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 .other suffix or ?format=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"}]}