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

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