bots.BotInfo
- class pyrogram.raw.types.bots.BotInfo
Localized information about a bot.
Constructor of
BotInfo.- Details:
Layer:
223ID:
E8A775B0
- Parameters:
name (
str) – Bot nameabout (
str) – Bot about textdescription (
str) – Bot description
- 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",
)