getMyName#

Returns: BotName

class aiogram.methods.get_my_name.GetMyName(*, language_code: str | None = None, **extra_data: Any)[source]#

Use this method to get the current bot name for the given user language. Returns aiogram.types.bot_name.BotName on success.

Source: https://core.telegram.org/bots/api#getmyname

language_code: str | None#

A two-letter ISO 639-1 language code or an empty string

model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}#

A dictionary of computed field names and their corresponding ComputedFieldInfo objects.

model_post_init(_ModelMetaclass__context: Any) None#

We need to both initialize private attributes and call the user-defined model_post_init method.

Usage#

As bot method#

result: BotName = await bot.get_my_name(...)

Method as object#

Imports:

  • from aiogram.methods.get_my_name import GetMyName

  • alias: from aiogram.methods import GetMyName

With specific bot#

result: BotName = await bot(GetMyName(...))