Interface SuggestedActionCustom

A custom suggestion to be shown at the top of the chat list. Subtype of SuggestedAction.

interface SuggestedActionCustom {
    @type: "suggestedActionCustom";
    description: FormattedText;
    name: string;
    title: FormattedText;
    url: string;
}

Properties

@type: "suggestedActionCustom"
description: FormattedText

A custom suggestion to be shown at the top of the chat list.

name: string

Unique name of the suggestion.

Title of the suggestion.

url: string

The link to open when the suggestion is clicked.