Message.reply_poll()¶
-
Message.reply_poll()¶ Bound method reply_poll of
Message.Use as a shortcut for:
client.send_poll( chat_id=message.chat.id, question="Is Pyrogram the best?", options=["Yes", "Yes"] )
Example
message.reply_poll("Is Pyrogram the best?", ["Yes", "Yes"])
- Parameters
question (
str) – The poll question, as string.options (List of
str) – The poll options, as list of strings (2 to 10 options are allowed).quote (
bool, optional) – IfTrue, the message will be sent as a reply to this message. If reply_to_message_id is passed, this parameter will be ignored. Defaults toTruein group chats andFalsein private chats.is_anonymous (
bool, optional) – True, if the poll needs to be anonymous. Defaults to True.type (
str, optional) – Poll type, “quiz” or “regular”. Defaults to “regular”allows_multiple_answers (
bool, optional) – True, if the poll allows multiple answers, ignored for polls in quiz mode. Defaults to Falsecorrect_option_id (
int, optional) – 0-based identifier of the correct answer option (the index of the correct option) Required for polls in quiz mode.disable_notification (
bool, optional) – Sends the message silently. Users will receive a notification with no sound.reply_to_message_id (
int, optional) – If the message is a reply, ID of the original message.schedule_date (
int, optional) – Date when the message will be automatically sent. Unix time.reply_markup (
InlineKeyboardMarkup|ReplyKeyboardMarkup|ReplyKeyboardRemove|ForceReply, optional) – Additional interface options. An object for an inline keyboard, custom reply keyboard, instructions to remove reply keyboard or to force a reply from the user.
- Returns
On success, the sent
Messageis returned.- Raises
RPCError – In case of a Telegram RPC error.