Source code for aiogram.enums.keyboard_button_poll_type_type

from enum import Enum


[docs] class KeyboardButtonPollTypeType(str, Enum): """ This object represents type of a poll, which is allowed to be created and sent when the corresponding button is pressed. Source: https://core.telegram.org/bots/api#keyboardbuttonpolltype """ QUIZ = "quiz" REGULAR = "regular"