ExGram.Model.Poll (ex_gram v0.66.0)

Copy Markdown View Source

This object contains information about a poll.

Check the documentation of this model on Telegram Bot API

  • id: Unique poll identifier
  • question: Poll question, 1-300 characters
  • options: List of poll options
  • total_voter_count: Total number of users that voted in the poll
  • is_closed: True, if the poll is closed
  • is_anonymous: True, if the poll is anonymous
  • type: Poll type, currently can be "regular” or "quiz”
  • allows_multiple_answers: True, if the poll allows multiple answers
  • allows_revoting: True, if the poll allows to change the chosen answer options
  • members_only: True if voting is limited to users who have been members of the chat where the poll was originally sent for more than 24 hours
  • question_entities (optional): Optional. Special entities that appear in the question. Currently, only custom emoji entities are allowed in poll questions
  • country_codes (optional): Optional. A list of two-letter ISO 3166-1 alpha-2 country codes indicating the countries from which users can vote in the poll. The country code "FT” is used for users with anonymous numbers. If omitted, then users from any country can participate in the poll.
  • correct_option_ids (optional): 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.
  • explanation (optional): 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
  • explanation_entities (optional): Optional. Special entities like usernames, URLs, bot commands, etc. that appear in the explanation
  • explanation_media (optional): Optional. Media added to the quiz explanation
  • open_period (optional): Optional. Amount of time in seconds the poll will be active after creation
  • close_date (optional): Optional. Point in time (Unix timestamp) when the poll will be automatically closed
  • description (optional): Optional. Description of the poll; for polls inside the Message object only
  • description_entities (optional): Optional. Special entities like usernames, URLs, bot commands, etc. that appear in the description
  • media (optional): Optional. Media added to the poll description; for polls inside the Message object only

Summary

Types

t()

@type t() :: %ExGram.Model.Poll{
  allows_multiple_answers: boolean(),
  allows_revoting: boolean(),
  close_date: integer() | nil,
  correct_option_ids: [integer()] | nil,
  country_codes: [String.t()] | nil,
  description: String.t() | nil,
  description_entities: [ExGram.Model.MessageEntity.t()] | nil,
  explanation: String.t() | nil,
  explanation_entities: [ExGram.Model.MessageEntity.t()] | nil,
  explanation_media: ExGram.Model.PollMedia.t() | nil,
  id: String.t(),
  is_anonymous: boolean(),
  is_closed: boolean(),
  media: ExGram.Model.PollMedia.t() | nil,
  members_only: boolean(),
  open_period: integer() | nil,
  options: [ExGram.Model.PollOption.t()],
  question: String.t(),
  question_entities: [ExGram.Model.MessageEntity.t()] | nil,
  total_voter_count: integer(),
  type: String.t()
}

Functions

decode_as()