getCompletionAction

View as MarkdownOpen in Claude

Return the completion action for this gather info. This is an internal method on GatherInfo.

Parameters

None.

Returns

string | undefined — The completion action string, or undefined if not set.

Example

1import { GatherInfo } from '@signalwire/sdk';
2
3const gather = new GatherInfo({ completionAction: 'next_step' });
4
5console.log(gather.getCompletionAction()); // "next_step"