GramIO API Reference / gramio/dist / TelegramInputChecklist
Interface: TelegramInputChecklist
Defined in: @gramio/types/out/objects.d.ts:1983
Describes a checklist to create.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
others_can_add_tasks? | boolean | Optional. Pass True if other users can add tasks to the checklist | @gramio/types/out/objects.d.ts:2003 |
others_can_mark_tasks_as_done? | boolean | Optional. Pass True if other users can mark tasks as done or not done in the checklist | @gramio/types/out/objects.d.ts:2007 |
parse_mode? | "HTML" | "MarkdownV2" | "Markdown" | Optional. Mode for parsing entities in the title. See formatting options for more details. | @gramio/types/out/objects.d.ts:1991 |
tasks | TelegramInputChecklistTask[] | List of 1-30 tasks in the checklist | @gramio/types/out/objects.d.ts:1999 |
title | string | { toString: string; } | Title of the checklist; 1-255 characters after entities parsing | @gramio/types/out/objects.d.ts:1987 |
title_entities? | TelegramMessageEntity[] | Optional. List of special entities that appear in the title, which can be specified instead of parse_mode. Currently, only bold, italic, underline, strikethrough, spoiler, and custom_emoji entities are allowed. | @gramio/types/out/objects.d.ts:1995 |