ultra-telegram-framework
    Preparing search index...

    Interface InputChecklistTask

    Describes a task to add to a checklist.

    interface InputChecklistTask {
        id: number;
        parse_mode?: string;
        text: string;
        text_entities?: MessageEntity[];
    }
    Index

    Properties

    id: number

    Unique identifier of the task; must be positive and unique among all task identifiers currently present in the checklist

    parse_mode?: string

    Optional. Mode for parsing entities in the text. See formatting options for more details.

    text: string

    Text of the task; 1-100 characters after entities parsing

    text_entities?: MessageEntity[]

    Optional. List of special entities that appear in the text, which can be specified instead of parse_mode. Currently, only bold, italic, underline, strikethrough, spoiler, custom_emoji, and date_time entities are allowed.