MessageActionTodoAppendTasks
- class pyrogram.raw.types.MessageActionTodoAppendTasks
Items were appended to the todo list ».
Constructor of
MessageAction.- Details:
Layer:
223ID:
C7EDBC83
- Parameters:
list (List of
TodoItem) – Appended items.
TL Schema
messageActionTodoAppendTasks#c7edbc83
list:Vector<TodoItem>
= MessageAction
Parameter Tree
MessageActionTodoAppendTasks
└── list →
Vector < TodoItem >└──
TodoItem├── id →
int└── title →
TextWithEntities└──
TextWithEntitiesExample
MessageActionTodoAppendTasks(
list=[
TodoItem(
id=0,
title=TextWithEntities(
text="Open",
entities=[
MessageEntityUnknown(
offset=0,
length=0
)
]
)
)
],
)