Interface BotCommand

Represents a command supported by a bot.

interface BotCommand {
    @type: "botCommand";
    command: string;
    description: string;
}

Properties

@type: "botCommand"
command: string

Text of the bot command.

description: string

Represents a command supported by a bot.