Evo Voice

<back to all web services

CogitoBlindTransferRequest

The following routes are available for this service:
All Verbs/nodes/cogito/blind-transfer
import 'package:servicestack/servicestack.dart';
import 'dart:typed_data';

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 .other suffix or ?format=other

HTTP + OTHER

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/jsonl
Content-Type: text/jsonl
Content-Length: length

{"sessionId":"String","flowId":"String","target":"String"}