Package it.tdlight.jni
Class TdApi.SearchSecretMessages
java.lang.Object
it.tdlight.jni.TdApi.Object
it.tdlight.jni.TdApi.Function
it.tdlight.jni.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 long
chatId
Identifier of the chat in which to search.static int
CONSTRUCTOR
TdApi.SearchMessagesFilter
filter
A filter for message content in the search results.int
limit
The maximum number of messages to be returned; up to 100.String
offset
Offset of the first entry to return as received from the previous request; use empty string to get first chunk of results.String
query
Query to search for. -
Constructor Summary
Constructors Constructor Description SearchSecretMessages()
Searches for messages in secret chats.SearchSecretMessages(long chatId, String query, String offset, int limit, TdApi.SearchMessagesFilter filter)
Searches for messages in secret chats.SearchSecretMessages(DataInput input)
-
Method Summary
Modifier and Type Method Description boolean
equals(Object o)
int
getConstructor()
int
hashCode()
void
serialize(DataOutput output)
Methods inherited from class it.tdlight.jni.TdApi.Function
toString
Methods inherited from class it.tdlight.jni.TdApi.Object
serialize
-
Field Details
-
chatId
public long chatIdIdentifier of the chat in which to search. Specify 0 to search in all secret chats. -
query
Query to search for. If empty, searchChatMessages should 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
public int limitThe 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
A filter for message content in the search results. -
CONSTRUCTOR
public static final int CONSTRUCTOR- See Also:
- Constant Field Values
-
-
Constructor Details
-
SearchSecretMessages
public SearchSecretMessages()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)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
- long Identifier of the chat in which to search. Specify 0 to search in all secret chats.query
- String Query to search for. If empty, searchChatMessages should be used instead.offset
- String Offset of the first entry to return as received from the previous request; use empty string to get first chunk of results.limit
- int 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
- SearchMessagesFilter A filter for message content in the search results.
-
SearchSecretMessages
- Throws:
IOException
-
-
Method Details
-
getConstructor
public int getConstructor()- Specified by:
getConstructor
in classTdApi.Object
-
serialize
- Specified by:
serialize
in classTdApi.Object
- Throws:
IOException
-
equals
-
hashCode
public int hashCode()
-