public static class TdApi.Poll extends TdApi.Object
| Modifier and Type | Field and Description |
|---|---|
int |
closeDate
Point in time (Unix timestamp) when the poll will automatically be closed.
|
static int |
CONSTRUCTOR
Identifier uniquely determining type of the object.
|
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.
|
TdApi.FormattedText |
question
Poll question; 1-300 characters.
|
TdApi.MessageSender[] |
recentVoterIds
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 and Description |
|---|
Poll()
Describes a poll.
|
Poll(long id,
TdApi.FormattedText question,
TdApi.PollOption[] options,
int totalVoterCount,
TdApi.MessageSender[] recentVoterIds,
boolean isAnonymous,
TdApi.PollType type,
int openPeriod,
int closeDate,
boolean isClosed)
Describes a poll.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getConstructor()
Returns an identifier uniquely determining type of the object.
|
toStringpublic long id
public TdApi.FormattedText question
public TdApi.PollOption[] options
public int totalVoterCount
public TdApi.MessageSender[] recentVoterIds
public boolean isAnonymous
public TdApi.PollType type
public int openPeriod
public int closeDate
public boolean isClosed
public static final int CONSTRUCTOR
public Poll()
public Poll(long id,
TdApi.FormattedText question,
TdApi.PollOption[] options,
int totalVoterCount,
TdApi.MessageSender[] recentVoterIds,
boolean isAnonymous,
TdApi.PollType type,
int openPeriod,
int closeDate,
boolean isClosed)
id - Unique poll identifier.question - Poll question; 1-300 characters. Only custom emoji entities are allowed.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.public int getConstructor()
TdApi.ObjectgetConstructor in class TdApi.Object