Module tdlight.api

Class TdApi.Poll

Enclosing class:
TdApi

public static final class TdApi.Poll extends TdApi.Object
Describes a poll.
  • Field Details

    • id

      public long id
      Unique poll identifier.
    • question

      public String question
      Poll question; 1-300 characters.
    • options

      public TdApi.PollOption[] options
      List of poll answer options.
    • totalVoterCount

      public int totalVoterCount
      Total number of voters, participating in the poll.
    • recentVoterIds

      public TdApi.MessageSender[] recentVoterIds
      Identifiers of recent voters, if the poll is non-anonymous.
    • isAnonymous

      public boolean isAnonymous
      True, if the poll is anonymous.
    • type

      public TdApi.PollType type
      Type of the poll.
    • openPeriod

      public int openPeriod
      Amount of time the poll will be active after creation, in seconds.
    • closeDate

      public int closeDate
      Point in time (Unix timestamp) when the poll will automatically be closed.
    • isClosed

      public boolean isClosed
      True, if the poll is closed.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      Identifier uniquely determining type of the object.
      See Also:
  • Constructor Details

    • Poll

      public Poll()
      Describes a poll.
    • Poll

      public Poll(long id, String question, TdApi.PollOption[] options, int totalVoterCount, TdApi.MessageSender[] recentVoterIds, boolean isAnonymous, TdApi.PollType type, int openPeriod, int closeDate, boolean isClosed)
      Describes a poll.
      Parameters:
      id - Unique poll identifier.
      question - Poll question; 1-300 characters.
      options - List of poll answer options.
      totalVoterCount - Total number of voters, participating in the poll.
      recentVoterIds - Identifiers of recent voters, if the poll is non-anonymous.
      isAnonymous - True, if the poll is anonymous.
      type - Type of the poll.
      openPeriod - Amount of time the poll will be active after creation, in seconds.
      closeDate - Point in time (Unix timestamp) when the poll will automatically be closed.
      isClosed - True, if the poll is closed.
    • Poll

      public Poll(DataInput input) throws IOException
      Describes a poll.
      Parameters:
      input - Serialized input
      Throws:
      IOException - the deserialization failed
  • Method Details

    • getConstructor

      public int getConstructor()
      Description copied from class: TdApi.Object
      Returns an identifier uniquely determining type of the object.
      Specified by:
      getConstructor in class TdApi.Object
      Returns:
      this.CONSTRUCTOR
    • serialize

      public void serialize(DataOutput output) throws IOException
      Serialize the TDLib class
      Specified by:
      serialize in class TdApi.Object
      Parameters:
      output - output data stream
      Throws:
      IOException - the serialization failed
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object