GramIO API Reference / gramio/dist / TelegramPoll
Interface: TelegramPoll
Defined in: @gramio/types/out/objects.d.ts:1883
This object contains information about a poll.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
allows_multiple_answers | boolean | True, if the poll allows multiple answers | @gramio/types/out/objects.d.ts:1919 |
allows_revoting | boolean | True, if the poll allows to change the chosen answer options | @gramio/types/out/objects.d.ts:1923 |
close_date? | number | Optional. Point in time (Unix timestamp) when the poll will be automatically closed | @gramio/types/out/objects.d.ts:1943 |
correct_option_ids? | number[] | Optional. Array of 0-based identifiers of the correct answer options. Available only for polls in quiz mode which are closed or were sent (not forwarded) by the bot or to the private chat with the bot. | @gramio/types/out/objects.d.ts:1927 |
description? | string | Optional. Description of the poll; for polls inside the Message object only | @gramio/types/out/objects.d.ts:1947 |
description_entities? | TelegramMessageEntity[] | Optional. Special entities like usernames, URLs, bot commands, etc. that appear in the description | @gramio/types/out/objects.d.ts:1951 |
explanation? | string | Optional. Text that is shown when a user chooses an incorrect answer or taps on the lamp icon in a quiz-style poll, 0-200 characters | @gramio/types/out/objects.d.ts:1931 |
explanation_entities? | TelegramMessageEntity[] | Optional. Special entities like usernames, URLs, bot commands, etc. that appear in the explanation | @gramio/types/out/objects.d.ts:1935 |
id | string | Unique poll identifier | @gramio/types/out/objects.d.ts:1887 |
is_anonymous | boolean | True, if the poll is anonymous | @gramio/types/out/objects.d.ts:1911 |
is_closed | boolean | True, if the poll is closed | @gramio/types/out/objects.d.ts:1907 |
open_period? | number | Optional. Amount of time in seconds the poll will be active after creation | @gramio/types/out/objects.d.ts:1939 |
options | TelegramPollOption[] | List of poll options | @gramio/types/out/objects.d.ts:1899 |
question | string | Poll question, 1-300 characters | @gramio/types/out/objects.d.ts:1891 |
question_entities? | TelegramMessageEntity[] | Optional. Special entities that appear in the question. Currently, only custom emoji entities are allowed in poll questions | @gramio/types/out/objects.d.ts:1895 |
total_voter_count | number | Total number of users that voted in the poll | @gramio/types/out/objects.d.ts:1903 |
type | TelegramPollType | Poll type, currently can be “regular” or “quiz” | @gramio/types/out/objects.d.ts:1915 |