Package it.tdlight.jni
Class TdApi.Poll
java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.Poll
- Enclosing class:
- TdApi
public static class TdApi.Poll extends TdApi.Object
Describes a poll.
-
Field Summary
Fields Modifier and Type Field Description int
closeDate
Point in time (Unix timestamp) when the poll will be automatically closed.static int
CONSTRUCTOR
long
id
Unique poll identifier.boolean
isAnonymous
True, if the poll is anonymous.boolean
isClosed
True, if the poll is closed.int
openPeriod
Amount of time the poll will be active after creation, in seconds.TdApi.PollOption[]
options
List of poll answer options.String
question
Poll question; 1-300 characters.long[]
recentVoterUserIds
User identifiers of recent voters, if the poll is non-anonymous.int
totalVoterCount
Total number of voters, participating in the poll.TdApi.PollType
type
Type of the poll. -
Constructor Summary
Constructors Constructor Description Poll()
Describes a poll.Poll(long id, String question, TdApi.PollOption[] options, int totalVoterCount, long[] recentVoterUserIds, boolean isAnonymous, TdApi.PollType type, int openPeriod, int closeDate, boolean isClosed)
Describes a poll.Poll(DataInput input)
-
Method Summary
Modifier and Type Method Description boolean
equals(Object o)
int
getConstructor()
int
hashCode()
void
serialize(DataOutput output)
Methods inherited from class it.tdlight.jni.TdApi.Object
serialize, toString
-
Field Details
-
id
public long idUnique poll identifier. -
question
Poll question; 1-300 characters. -
options
List of poll answer options. -
totalVoterCount
public int totalVoterCountTotal number of voters, participating in the poll. -
recentVoterUserIds
public long[] recentVoterUserIdsUser identifiers of recent voters, if the poll is non-anonymous. -
isAnonymous
public boolean isAnonymousTrue, if the poll is anonymous. -
type
Type of the poll. -
openPeriod
public int openPeriodAmount of time the poll will be active after creation, in seconds. -
closeDate
public int closeDatePoint in time (Unix timestamp) when the poll will be automatically closed. -
isClosed
public boolean isClosedTrue, if the poll is closed. -
CONSTRUCTOR
public static final int CONSTRUCTOR- See Also:
- Constant Field Values
-
-
Constructor Details
-
Poll
public Poll()Describes a poll. -
Poll
public Poll(long id, String question, TdApi.PollOption[] options, int totalVoterCount, long[] recentVoterUserIds, boolean isAnonymous, TdApi.PollType type, int openPeriod, int closeDate, boolean isClosed)Describes a poll.- Parameters:
id
- long Unique poll identifier.question
- String Poll question; 1-300 characters.options
- PollOption[] List of poll answer options.totalVoterCount
- int Total number of voters, participating in the poll.recentVoterUserIds
- long[] User identifiers of recent voters, if the poll is non-anonymous.isAnonymous
- boolean True, if the poll is anonymous.type
- PollType Type of the poll.openPeriod
- int Amount of time the poll will be active after creation, in seconds.closeDate
- int Point in time (Unix timestamp) when the poll will be automatically closed.isClosed
- boolean True, if the poll is closed.
-
Poll
- Throws:
IOException
-
-
Method Details
-
getConstructor
public int getConstructor()- Specified by:
getConstructor
in classTdApi.Object
-
serialize
- Specified by:
serialize
in classTdApi.Object
- Throws:
IOException
-
equals
-
hashCode
public int hashCode()
-