TodoCompletion
- class pyrogram.raw.types.TodoCompletion
A completed todo list » item.
Constructor of
TodoCompletion.- Details:
Layer:
223ID:
221BB5E4
- Parameters:
id (
int32-bit) – The ID of the completed item.completed_by (
Peer) – ID of the user that completed the item.date (
int32-bit) – When was the item completed.
TL Schema
todoCompletion#221bb5e4
id:int
completed_by:Peer
date:int
= TodoCompletion
Parameter Tree
TodoCompletion
├── id →
int├── completed_by →
Peer│ ├──
PeerUser│ │ └── user_id →
long│ ├──
PeerChat│ │ └── chat_id →
long│ └──
PeerChannel│ └── channel_id →
long└── date →
intExample
TodoCompletion(
id=0,
completed_by=PeerUser(user_id=0),
date=0,
)