All Verbs | /chat/endpoint/message |
---|
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';
class SendEndpointMessage implements IConvertible
{
String? sessionId;
String? endpointId;
String? body;
String? attachmentUri;
String? attachmentContentType;
String? sender;
String? displayName;
SendEndpointMessage({this.sessionId,this.endpointId,this.body,this.attachmentUri,this.attachmentContentType,this.sender,this.displayName});
SendEndpointMessage.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
sessionId = json['sessionId'];
endpointId = json['endpointId'];
body = json['body'];
attachmentUri = json['attachmentUri'];
attachmentContentType = json['attachmentContentType'];
sender = json['sender'];
displayName = json['displayName'];
return this;
}
Map<String, dynamic> toJson() => {
'sessionId': sessionId,
'endpointId': endpointId,
'body': body,
'attachmentUri': attachmentUri,
'attachmentContentType': attachmentContentType,
'sender': sender,
'displayName': displayName
};
getTypeName() => "SendEndpointMessage";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'team.evovoice.io', types: <String, TypeInfo> {
'SendEndpointMessage': TypeInfo(TypeOf.Class, create:() => SendEndpointMessage()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /chat/endpoint/message HTTP/1.1
Host: team.evovoice.io
Accept: application/json
Content-Type: application/json
Content-Length: length
{"sessionId":"String","endpointId":"String","body":"String","attachmentUri":"String","attachmentContentType":"String","sender":"String","displayName":"String"}