Package org.drinkless.tdlib
Class TdApi.GetPollVoters
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Function
-
- org.drinkless.tdlib.TdApi.GetPollVoters
-
- Enclosing class:
- TdApi
public static class TdApi.GetPollVoters extends TdApi.Function
Returns users voted for the specified option in a non-anonymous polls. For optimal performance, the number of returned users is chosen by TDLib.Returns
Users
-
-
Field Summary
Fields Modifier and Type Field Description longchatIdIdentifier of the chat to which the poll belongs.static intCONSTRUCTORIdentifier uniquely determining type of the object.intlimitThe maximum number of users to be returned; must be positive and can't be greater than 50.longmessageIdIdentifier of the message containing the poll.intoffsetNumber of users to skip in the result; must be non-negative.intoptionId0-based identifier of the answer option.
-
Constructor Summary
Constructors Constructor Description GetPollVoters()Default constructor for a function, which returns users voted for the specified option in a non-anonymous polls.GetPollVoters(long chatId, long messageId, int optionId, int offset, int limit)Creates a function, which returns users voted for the specified option in a non-anonymous polls.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
-
-
-
Field Detail
-
chatId
public long chatId
Identifier of the chat to which the poll belongs.
-
messageId
public long messageId
Identifier of the message containing the poll.
-
optionId
public int optionId
0-based identifier of the answer option.
-
offset
public int offset
Number of users to skip in the result; must be non-negative.
-
limit
public int limit
The maximum number of users to be returned; must be positive and can't be greater than 50. For optimal performance, the number of returned users 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 CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
GetPollVoters
public GetPollVoters()
Default constructor for a function, which returns users voted for the specified option in a non-anonymous polls. For optimal performance, the number of returned users is chosen by TDLib.Returns
Users
-
GetPollVoters
public GetPollVoters(long chatId, long messageId, int optionId, int offset, int limit)Creates a function, which returns users voted for the specified option in a non-anonymous polls. For optimal performance, the number of returned users is chosen by TDLib.Returns
Users- 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 users to skip in the result; must be non-negative.limit- The maximum number of users to be returned; must be positive and can't be greater than 50. For optimal performance, the number of returned users 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 Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-