getMyShortDescription¶
Returns: BotShortDescription
- class litegram.methods.get_my_short_description.GetMyShortDescription(*, language_code: str | None = None, **extra_data: Any)[source]¶
Use this method to get the current bot short description for the given user language. Returns
litegram.types.bot_short_description.BotShortDescriptionon success.Source: https://core.telegram.org/bots/api#getmyshortdescription
Usage¶
As bot method¶
result: BotShortDescription = await bot.get_my_short_description(...)
Method as object¶
Imports:
from litegram.methods.get_my_short_description import GetMyShortDescriptionalias:
from litegram.methods import GetMyShortDescription
With specific bot¶
result: BotShortDescription = await bot(GetMyShortDescription(...))