Package org.drinkless.tdlib
Class TdApi.GetMessageAddedReactions
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.Function<TdApi.AddedReactions>
org.drinkless.tdlib.TdApi.GetMessageAddedReactions
- Enclosing class:
- TdApi
Returns reactions added for a message, along with their sender.
Returns AddedReactions
-
Field Summary
FieldsModifier and TypeFieldDescriptionlongIdentifier of the chat to which the message belongs.static final intIdentifier uniquely determining type of the object.intThe maximum number of reactions to be returned; must be positive and can't be greater than 100.longIdentifier of the message.Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results.Type of the reactions to return; pass null to return all added reactions; reactionTypePaid isn't supported. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which returns reactions added for a message, along with their sender.GetMessageAddedReactions(long chatId, long messageId, TdApi.ReactionType reactionType, String offset, int limit) Creates a function, which returns reactions added for a message, along with their sender. -
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 message belongs. -
messageId
public long messageIdIdentifier of the message. Use message.interactionInfo.reactions.canGetAddedReactions to check whether added reactions can be received for the message. -
reactionType
Type of the reactions to return; pass null to return all added reactions; reactionTypePaid isn't supported. -
offset
Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results. -
limit
public int limitThe maximum number of reactions to be returned; must be positive and can't be greater than 100. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
GetMessageAddedReactions
public GetMessageAddedReactions()Default constructor for a function, which returns reactions added for a message, along with their sender.Returns
AddedReactions -
GetMessageAddedReactions
public GetMessageAddedReactions(long chatId, long messageId, TdApi.ReactionType reactionType, String offset, int limit) Creates a function, which returns reactions added for a message, along with their sender.Returns
AddedReactions- Parameters:
chatId- Identifier of the chat to which the message belongs.messageId- Identifier of the message. Use message.interactionInfo.reactions.canGetAddedReactions to check whether added reactions can be received for the message.reactionType- Type of the reactions to return; pass null to return all added reactions; reactionTypePaid isn't supported.offset- Offset of the first entry to return as received from the previous request; use empty string to get the first chunk of results.limit- The maximum number of reactions to be returned; must be positive and can't be greater than 100.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-