setMyShortDescription

Use this method to change the bot's short description, which is shown on the bot's profile page and is sent together with the link when users share the bot. Returns True on success.

Arguments
Name Type Description Required
short_description string | null | array New short description for the bot; 0-120 characters. Pass an empty string to remove the dedicated short description for the given language. no
language_code string | null A two-letter ISO 639-1 language code. If empty, the short description will be applied to all users for whose language there is no dedicated short 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::setMyShortDescription(short_description: string | null, language_code: string | null, token: String | null, forgot: Boolean | null, answer: Boolean | null);
request::setMyShortDescription(['short_description' => string | null, 'language_code' => string | null, 'token' => String | null, 'forgot' => Boolean | null, 'answer' => Boolean | null]);
request::setMyShortDescription();