Skip to main content
Module

x/mtkruto/mod.ts>SendPollParams

[WIP] Cross-runtime JavaScript library for building Telegram clients
Go to Latest
interface SendPollParams
Re-export
import { type SendPollParams } from "https://deno.land/x/mtkruto@0.1.127/mod.ts";

Properties

optional
isAnonymous: boolean

Whether the poll should be anonymous.

optional
type: "quiz" | "regular"

The type of the poll.

optional
allowMultipleAnswers: boolean

Whether multiple selections should be allowed. Only valid for regular polls.

optional
correctOptionIndex: number

Index of the correct option. Required for quiz polls.

optional
explanation: string

A text that will be shown to the user when the poll is answered. Only valid for quiz polls.

optional
explanationParseMode: ParseMode

The parse mode to use for the explanation. If not provided, the default parse mode will be used.

optional
explanationEntities: MessageEntity[]

The explanation's entities.

optional
openPeriod: number

Duration of the poll in seconds. Must be in the range of 5-600. Cannot be used simultaneously with closeDate.

optional
closeDate: Date

The time in which the poll will be closed. Must be at least 5 seconds in the future, and no more than 600. Cannot be used simultaneously with openPeriod.

optional
isClosed: boolean

Whether the poll should be closed as soon as it is sent, allowing no answers.

optional
disableNotification: boolean

Whether to send the message in a silent way without making a sound on the recipients' clients.

optional
replyToMessageId: number

The identifier of a message to reply to.

optional
messageThreadId: number

The identifier of a thread to send the message to.

optional
sendAs: ChatID

The identifier of the chat to send the message on behalf of. User-only.

The reply markup of the message. Bot-only.

optional
protectContent: boolean

Whether to protect the contents of the message from copying and forwarding.