ultra-telegram-framework
    Preparing search index...

    Interface ChecklistTask

    Describes a task in a checklist.

    interface ChecklistTask {
        completed_by_chat?: Chat;
        completed_by_user?: User;
        completion_date?: number;
        id: number;
        text: string;
        text_entities?: MessageEntity[];
    }
    Index

    Properties

    completed_by_chat?: Chat

    Optional. Chat that completed the task; omitted if the task wasn't completed by a chat

    completed_by_user?: User

    Optional. User that completed the task; omitted if the task wasn't completed by a user

    completion_date?: number

    Optional. Point in time (Unix timestamp) when the task was completed; 0 if the task wasn't completed

    id: number

    Unique identifier of the task

    text: string

    Text of the task

    text_entities?: MessageEntity[]

    Optional. Special entities that appear in the task text