BotVerification

class pyrogram.raw.types.BotVerification

Describes a bot verification icon ».

Constructor of BotVerification.

Details:
  • Layer: 223

  • ID: F93CD45C

Parameters:
  • bot_id (int 64-bit) – ID of the bot that verified this peer

  • icon (int 64-bit) – Verification icon

  • description (str) – Verification description

TL Schema

botVerification#f93cd45c
bot_id:long
icon:long
description:string

= BotVerification

Parameter Tree

BotVerification
├── bot_idlong
├── iconlong
└── descriptionstring

Example

BotVerification(
    bot_id=0,
    icon=0,
    description="text",
)