Evo Voice

<back to all web services

SendEndpointMessage

The following routes are available for this service:
All Verbs/chat/endpoint/message
import 'package:servicestack/servicestack.dart';

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: 'evovoice.io', types: <String, TypeInfo> {
    'SendEndpointMessage': TypeInfo(TypeOf.Class, create:() => SendEndpointMessage()),
});

Dart SendEndpointMessage DTOs

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

HTTP + JSV

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: evovoice.io 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	sessionId: String,
	endpointId: String,
	body: String,
	attachmentUri: String,
	attachmentContentType: String,
	sender: String,
	displayName: String
}