StatsGroupTopAdmin

class pyrogram.raw.types.StatsGroupTopAdmin

Information about an active admin in a supergroup

Constructor of StatsGroupTopAdmin.

Details:
  • Layer: 223

  • ID: D7584C87

Parameters:
  • user_id (int 64-bit) – User ID

  • deleted (int 32-bit) – Number of deleted messages for statistics period in consideration

  • kicked (int 32-bit) – Number of kicked users for statistics period in consideration

  • banned (int 32-bit) – Number of banned users for statistics period in consideration

TL Schema

statsGroupTopAdmin#d7584c87
user_id:long
deleted:int
kicked:int
banned:int

= StatsGroupTopAdmin

Parameter Tree

StatsGroupTopAdmin
├── user_idlong
├── deletedint
├── kickedint
└── bannedint

Example

StatsGroupTopAdmin(
    user_id=0,
    deleted=0,
    kicked=0,
    banned=0,
)