setMyCommands

inline fun setMyCommands(languageCode: String? = null, scope: BotCommandScope? = null, command: List<BotCommand>): SetMyCommandsAction

Use this method to change the list of the bot's commands. See this manual for more details about bot commands. Returns True on success.

Api reference

Parameters

commands

A JSON-serialized list of bot commands to be set as the list of the bot's commands. At most 100 commands can be specified.

scope

A JSON-serialized object, describing scope of users for which the commands are relevant. Defaults to BotCommandScopeDefault.

languageCode

A two-letter ISO 639-1 language code. If empty, commands will be applied to all users from the given scope, for whose language there are no dedicated commands


inline fun setMyCommands(languageCode: String? = null, scope: BotCommandScope? = null, vararg command: BotCommand): SetMyCommandsAction
fun setMyCommands(languageCode: String? = null, scope: BotCommandScope? = null, block: BotCommandsBuilder.() -> Unit): SetMyCommandsAction