Interface ChatFollowup

A followup question suggested by the participant.

Stubbed

interface ChatFollowup {
    command?: string;
    label?: string;
    participant?: string;
    prompt: string;
}

Properties

command?: string

By default, the followup goes to the same participant/command. But this property can be set to invoke a different command.

label?: string

A title to show the user. The prompt will be shown by default, when this is unspecified.

participant?: string

By default, the followup goes to the same participant/command. But this property can be set to invoke a different participant by ID. Followups can only invoke a participant that was contributed by the same extension.

prompt: string

The message to send to the chat.