Package org.drinkless.tdlib
Class TdApi.GetChatSparseMessagePositions
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.Function<TdApi.MessagePositions>
org.drinkless.tdlib.TdApi.GetChatSparseMessagePositions
- Enclosing class:
- TdApi
public static class TdApi.GetChatSparseMessagePositions
extends TdApi.Function<TdApi.MessagePositions>
Returns sparse positions of messages of the specified type in the chat to be used for shared media scroll implementation. Returns the results in reverse chronological order (i.e., in order of decreasing messageId). Cannot be used in secret chats or with searchMessagesFilterFailedToSend filter without an enabled message database.
Returns MessagePositions
-
Field Summary
FieldsModifier and TypeFieldDescriptionlongIdentifier of the chat in which to return information about message positions.static final intIdentifier uniquely determining type of the object.Filter for message content.longThe message identifier from which to return information about message positions.intThe expected number of message positions to be returned; 50-2000.longIf not 0, only messages in the specified Saved Messages topic will be considered; pass 0 to consider all messages, or for chats other than Saved Messages. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which returns sparse positions of messages of the specified type in the chat to be used for shared media scroll implementation.GetChatSparseMessagePositions(long chatId, TdApi.SearchMessagesFilter filter, long fromMessageId, int limit, long savedMessagesTopicId) Creates a function, which returns sparse positions of messages of the specified type in the chat to be used for shared media scroll implementation. -
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 in which to return information about message positions. -
filter
Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention, searchMessagesFilterUnreadMention, and searchMessagesFilterUnreadReaction are unsupported in this function. -
fromMessageId
public long fromMessageIdThe message identifier from which to return information about message positions. -
limit
public int limitThe expected number of message positions to be returned; 50-2000. A smaller number of positions can be returned, if there are not enough appropriate messages. -
savedMessagesTopicId
public long savedMessagesTopicIdIf not 0, only messages in the specified Saved Messages topic will be considered; pass 0 to consider all messages, or for chats other than Saved Messages. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
GetChatSparseMessagePositions
public GetChatSparseMessagePositions()Default constructor for a function, which returns sparse positions of messages of the specified type in the chat to be used for shared media scroll implementation. Returns the results in reverse chronological order (i.e., in order of decreasing messageId). Cannot be used in secret chats or with searchMessagesFilterFailedToSend filter without an enabled message database.Returns
MessagePositions -
GetChatSparseMessagePositions
public GetChatSparseMessagePositions(long chatId, TdApi.SearchMessagesFilter filter, long fromMessageId, int limit, long savedMessagesTopicId) Creates a function, which returns sparse positions of messages of the specified type in the chat to be used for shared media scroll implementation. Returns the results in reverse chronological order (i.e., in order of decreasing messageId). Cannot be used in secret chats or with searchMessagesFilterFailedToSend filter without an enabled message database.Returns
MessagePositions- Parameters:
chatId- Identifier of the chat in which to return information about message positions.filter- Filter for message content. Filters searchMessagesFilterEmpty, searchMessagesFilterMention, searchMessagesFilterUnreadMention, and searchMessagesFilterUnreadReaction are unsupported in this function.fromMessageId- The message identifier from which to return information about message positions.limit- The expected number of message positions to be returned; 50-2000. A smaller number of positions can be returned, if there are not enough appropriate messages.savedMessagesTopicId- If not 0, only messages in the specified Saved Messages topic will be considered; pass 0 to consider all messages, or for chats other than Saved Messages.
-
-
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
-