Module tdlight.api

Class TdApi.UpdatePollAnswer

Enclosing class:
TdApi

public static final class TdApi.UpdatePollAnswer extends TdApi.Update
A user changed the answer to a poll; for bots only.
  • Field Details

    • pollId

      public long pollId
      Unique poll identifier.
    • userId

      public long userId
      The user, who changed the answer to the poll.
    • optionIds

      public int[] optionIds
      0-based identifiers of answer options, chosen by the user.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • UpdatePollAnswer

      public UpdatePollAnswer()
      A user changed the answer to a poll; for bots only.
    • UpdatePollAnswer

      public UpdatePollAnswer(long pollId, long userId, int[] optionIds)
      A user changed the answer to a poll; for bots only.
      Parameters:
      pollId - long Unique poll identifier.
      userId - long The user, who changed the answer to the poll.
      optionIds - int[] 0-based identifiers of answer options, chosen by the user.
    • UpdatePollAnswer

      public UpdatePollAnswer(DataInput input) throws IOException
      A user changed the answer to a poll; for bots only.
      Throws:
      IOException
  • Method Details