Class Poll

java.lang.Object
io.github.natanimn.telebof.types.updates.Poll
All Implemented Interfaces:
TelegramUpdate

public class Poll extends Object implements TelegramUpdate
This class contains information about a poll.
Since:
3 March 2025
  • Field Details

    • id

      public String id
      Unique poll identifier
    • question

      public String question
      Poll question, 1-300 characters
    • type

      public PollType type
      Special entities that appear in the question. Currently, only custom emoji entities are allowed in poll questions
    • explanation

      public String explanation
      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
    • options

      public List<PollOption> options
      List of poll options
    • total_voter_count

      public Integer total_voter_count
      Total number of users that voted in the poll
    • correct_option_id

      public Integer correct_option_id
      0-based identifier of the correct answer option. Available only for polls in the quiz mode, which are closed, or was sent (not forwarded) by the bot or to the private chat with the bot.
    • open_period

      public Integer open_period
      Amount of time in seconds the poll will be active after creation
    • close_date

      public Integer close_date
      Point in time (Unix timestamp) when the poll will be automatically closed
    • is_closed

      public Boolean is_closed
      True, if the poll is closed
    • is_anonymous

      public Boolean is_anonymous
      True, if the poll is anonymous
    • allows_multiple_answers

      public Boolean allows_multiple_answers
      True, if the poll allows multiple answers
    • explanation_entities

      public List<MessageEntity> explanation_entities
      Special entities like usernames, URLs, bot commands, etc. that appear in the explanation
    • question_entities

      public List<MessageEntity> question_entities
      Special entities that appear in the question. Currently, only custom emoji entities are allowed in poll questions
  • Constructor Details

    • Poll

      public Poll()
  • Method Details