Member Junction
    Preparing search index...

    The subset of the SDK's Voice client (vonage.voice) we drive.

    interface VonageVoiceClientLike {
        createOutboundCall(
            call: VonageOutboundCallLike,
        ): Promise<VonageCallResponseLike>;
        hangupCall(callUuid: string): Promise<unknown>;
        playDTMF(callUuid: string, digits: string): Promise<VonageDtmfResponseLike>;
        transferCallWithNCCO(
            callUuid: string,
            ncco: NccoAction[],
        ): Promise<unknown>;
    }
    Index

    Methods