Package org.drinkless.tdlib
Class TdApi.SearchSecretMessages
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Function
-
- org.drinkless.tdlib.TdApi.SearchSecretMessages
-
- Enclosing class:
- TdApi
public static class TdApi.SearchSecretMessages extends TdApi.Function
Searches for messages in secret chats. Returns the results in reverse chronological order. For optimal performance, the number of returned messages is chosen by TDLib.Returns
FoundMessages
-
-
Field Summary
Fields Modifier and Type Field Description longchatIdIdentifier of the chat in which to search.static intCONSTRUCTORIdentifier uniquely determining type of the object.TdApi.SearchMessagesFilterfilterAdditional filter for messages to search; pass null to search for all messages.intlimitThe maximum number of messages to be returned; up to 100.StringoffsetOffset of the first entry to return as received from the previous request; use empty string to get first chunk of results.StringqueryQuery to search for.
-
Constructor Summary
Constructors Constructor Description SearchSecretMessages()Default constructor for a function, which searches for messages in secret chats.SearchSecretMessages(long chatId, String query, String offset, int limit, TdApi.SearchMessagesFilter filter)Creates a function, which searches for messages in secret chats.
-
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 in which to search. Specify 0 to search in all secret chats.
-
query
public String query
Query to search for. If empty, searchChatMessages must be used instead.
-
offset
public String offset
Offset of the first entry to return as received from the previous request; use empty string to get first chunk of results.
-
limit
public int limit
The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit.
-
filter
public TdApi.SearchMessagesFilter filter
Additional filter for messages to search; pass null to search for all messages.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SearchSecretMessages
public SearchSecretMessages()
Default constructor for a function, which searches for messages in secret chats. Returns the results in reverse chronological order. For optimal performance, the number of returned messages is chosen by TDLib.Returns
FoundMessages
-
SearchSecretMessages
public SearchSecretMessages(long chatId, String query, String offset, int limit, TdApi.SearchMessagesFilter filter)Creates a function, which searches for messages in secret chats. Returns the results in reverse chronological order. For optimal performance, the number of returned messages is chosen by TDLib.Returns
FoundMessages- Parameters:
chatId- Identifier of the chat in which to search. Specify 0 to search in all secret chats.query- Query to search for. If empty, searchChatMessages must be used instead.offset- Offset of the first entry to return as received from the previous request; use empty string to get first chunk of results.limit- The maximum number of messages to be returned; up to 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit.filter- Additional filter for messages to search; pass null to search for all messages.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-