bots.BotInfo
- class pyrogram.raw.base.bots.BotInfo
Localized name, about text and description of a bot.
- Constructors:
This base type has 1 constructor available.
Localized information about a bot.
- Functions:
This object can be returned by 1 function.
Get localized name, about text and description of a bot (or of the current account, if called by a bot).
TL Schema
bots.botInfo#e8a775b0
name:string
about:string
description:string
= bots.BotInfo
Parameter Tree
BotInfo
├── name →
string├── about →
string└── description →
stringExample
BotInfo(
name="text",
about="text",
description="text",
)