Describes a task in a checklist.
Check the documentation of this model on Telegram Bot API
id: Unique identifier of the tasktext: Text of the tasktext_entities (optional): Optional. Special entities that appear in the task textcompleted_by_user (optional): Optional. User that completed the task; omitted if the task wasn't completed by a usercompleted_by_chat (optional): Optional. Chat that completed the task; omitted if the task wasn't completed by a chatcompletion_date (optional): Optional. Point in time (Unix timestamp) when the task was completed; 0 if the task wasn't completed
Summary
Types
@type t() :: %ExGram.Model.ChecklistTask{ completed_by_chat: ExGram.Model.Chat.t() | nil, completed_by_user: ExGram.Model.User.t() | nil, completion_date: integer() | nil, id: integer(), text: String.t(), text_entities: [ExGram.Model.MessageEntity.t()] | nil }