@vonage/voice
Version:
The Voice API lets you create outbound calls, control in-progress calls and get information about historical calls.
22 lines • 917 B
TypeScript
import { RecordAction } from './RecordAction';
import { ConversationAction } from './ConversationAction';
import { ConnectAction } from './ConnectAction';
import { TalkAction } from './TalkAction';
import { StreamAction } from './StreamAction';
import { InputAction } from './InputAction';
import { NotifyAction } from './NotifyAction';
/**
* Represents a Nexmo Call Control Object (NCCO) action, which can be one of the following types:
* - ConnectAction
* - ConversationAction
* - InputAction
* - NotifyAction
* - RecordAction
* - StreamAction
* - TalkAction
*
* An NCCO action defines a specific action or behavior in a call flow, and these actions can be combined
* to create complex call scenarios when constructing NCCOs.
*/
export type NCCOAction = ConnectAction | ConversationAction | InputAction | NotifyAction | RecordAction | StreamAction | TalkAction;
//# sourceMappingURL=NCCOActions.d.ts.map