TodoCompletion
- class pyrogram.raw.base.TodoCompletion
A completed todo list » item.
- Constructors:
This base type has 1 constructor available.
A completed todo list » item.
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,
)