Server SDKs
Build AI agents, control calls, send messages, and more
Return the completion action for this gather info. This is an internal method on GatherInfo.
GatherInfo
None.
string | undefined — The completion action string, or undefined if not set.
string | undefined
undefined
1import { GatherInfo } from '@signalwire/sdk';23const gather = new GatherInfo({ completionAction: 'next_step' });45console.log(gather.getCompletionAction()); // "next_step"