| All Verbs | /nodes/cogito/blind-transfer |
|---|
import 'package:servicestack/servicestack.dart';
class CogitoBlindTransferRequest implements IConvertible
{
String? sessionId;
String? flowId;
String? target;
CogitoBlindTransferRequest({this.sessionId,this.flowId,this.target});
CogitoBlindTransferRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
sessionId = json['sessionId'];
flowId = json['flowId'];
target = json['target'];
return this;
}
Map<String, dynamic> toJson() => {
'sessionId': sessionId,
'flowId': flowId,
'target': target
};
getTypeName() => "CogitoBlindTransferRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'evovoice.io', types: <String, TypeInfo> {
'CogitoBlindTransferRequest': TypeInfo(TypeOf.Class, create:() => CogitoBlindTransferRequest()),
});
Dart CogitoBlindTransferRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /nodes/cogito/blind-transfer HTTP/1.1
Host: evovoice.io
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
sessionId: String,
flowId: String,
target: String
}