askQuestion
plugin.chat.askQuestion(question: string, buttons: string[], withFeedback: boolean): Promise<string>
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
question | string | Yes | |
buttons | string[] | Yes | (default: []) |
withFeedback | boolean | Yes | (default: false) |
Returns
Promise<string>
Example
import plugin from '@codebolt/plugin-sdk';
const result = await plugin.chat.askQuestion('question', /* string[] */, true);
console.log(result);