setMyDescription

Use this method to change the bot's description, which is shown in the chat with the bot if the chat is empty. Returns True on success.

Arguments
Name Type Description Required
description string | null | array New bot description; 0-512 characters. Pass an empty string to remove the dedicated description for the given language. no
language_code string | null A two-letter ISO 639-1 language code. If empty, the description will be applied to all users for whose language there is no dedicated description. no
token string | null You can use this method on another bot with specify this parameter no
forgot bool | null You can set to not receive request result, dont set it or pass null for turn it off no
answer bool | null You can set to answer to webhook, dont set it or pass null for turn it off no

Output : bool | BPT\types\responseError

Static or normal : Static

Examples :

request::setMyDescription(description: string | null, language_code: string | null, token: String | null, forgot: Boolean | null, answer: Boolean | null);
request::setMyDescription(['description' => string | null, 'language_code' => string | null, 'token' => String | null, 'forgot' => Boolean | null, 'answer' => Boolean | null]);
request::setMyDescription();