Package org.drinkless.tdlib
Class TdApi.GetPollVoters
- Enclosing class:
TdApi
Returns message senders voted for the specified option in a poll; use poll.canGetVoters to check whether the method can be used. For optimal performance, the number of returned users is chosen by TDLib.
Returns PollVoters
-
Nested Class Summary
Nested classes/interfaces inherited from class org.drinkless.tdlib.TdApi.Function
TdApi.Function.Constructors -
Field Summary
FieldsModifier and TypeFieldDescriptionlongIdentifier of the chat to which the poll belongs.static final intIdentifier uniquely determining type of the object.intThe maximum number of voters to be returned; must be positive and can't be greater than 50.longIdentifier of the message containing the poll.intNumber of voters to skip in the result; must be non-negative.int0-based identifier of the answer option. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which returns message senders voted for the specified option in a poll; use poll.canGetVoters to check whether the method can be used.GetPollVoters(long chatId, long messageId, int optionId, int offset, int limit) Creates a function, which returns message senders voted for the specified option in a poll; use poll.canGetVoters to check whether the method can be used. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
Field Details
-
chatId
public long chatIdIdentifier of the chat to which the poll belongs. -
messageId
public long messageIdIdentifier of the message containing the poll. -
optionId
public int optionId0-based identifier of the answer option. -
offset
public int offsetNumber of voters to skip in the result; must be non-negative. -
limit
public int limitThe maximum number of voters to be returned; must be positive and can't be greater than 50. For optimal performance, the number of returned voters is chosen by TDLib and can be smaller than the specified limit, even if the end of the voter list has not been reached. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
GetPollVoters
public GetPollVoters()Default constructor for a function, which returns message senders voted for the specified option in a poll; use poll.canGetVoters to check whether the method can be used. For optimal performance, the number of returned users is chosen by TDLib.Returns
PollVoters -
GetPollVoters
public GetPollVoters(long chatId, long messageId, int optionId, int offset, int limit) Creates a function, which returns message senders voted for the specified option in a poll; use poll.canGetVoters to check whether the method can be used. For optimal performance, the number of returned users is chosen by TDLib.Returns
PollVoters- Parameters:
chatId- Identifier of the chat to which the poll belongs.messageId- Identifier of the message containing the poll.optionId- 0-based identifier of the answer option.offset- Number of voters to skip in the result; must be non-negative.limit- The maximum number of voters to be returned; must be positive and can't be greater than 50. For optimal performance, the number of returned voters is chosen by TDLib and can be smaller than the specified limit, even if the end of the voter list has not been reached.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Function<TdApi.PollVoters>- Returns:
- this.CONSTRUCTOR
-