UpdateBotStopped
- class pyrogram.raw.types.UpdateBotStopped
A bot was stopped or re-started.
Constructor of
Update.- Details:
Layer:
223ID:
C4870A49
- Parameters:
user_id (
int64-bit) – The user IDdate (
int32-bit) – When did this action occurstopped (
bool) – Whether the bot was stopped or startedqts (
int32-bit) – New qts value, see updates » for more info.
TL Schema
updateBotStopped#c4870a49
user_id:long
date:int
stopped:Bool
qts:int
= Update
Parameter Tree
UpdateBotStopped
├── user_id →
long├── date →
int├── stopped →
Bool└── qts →
intExample
UpdateBotStopped(
user_id=0,
date=0,
stopped=True,
qts=0,
)