Package org.drinkless.tdlib
Class TdApi.SearchCallMessages
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Function
-
- org.drinkless.tdlib.TdApi.SearchCallMessages
-
- Enclosing class:
- TdApi
public static class TdApi.SearchCallMessages extends TdApi.Function
Searches for call messages. Returns the results in reverse chronological order (i. e., in order of decreasing messageId). For optimal performance, the number of returned messages is chosen by TDLib.Returns
Messages
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.longfromMessageIdIdentifier of the message from which to search; use 0 to get results from the last message.intlimitThe maximum number of messages to be returned; up to 100.booleanonlyMissedIf true, returns only messages with missed/declined calls.
-
Constructor Summary
Constructors Constructor Description SearchCallMessages()Default constructor for a function, which searches for call messages.SearchCallMessages(long fromMessageId, int limit, boolean onlyMissed)Creates a function, which searches for call messages.
-
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
-
fromMessageId
public long fromMessageId
Identifier of the message from which to search; use 0 to get results from the last message.
-
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.
-
onlyMissed
public boolean onlyMissed
If true, returns only messages with missed/declined calls.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SearchCallMessages
public SearchCallMessages()
Default constructor for a function, which searches for call messages. Returns the results in reverse chronological order (i. e., in order of decreasing messageId). For optimal performance, the number of returned messages is chosen by TDLib.Returns
Messages
-
SearchCallMessages
public SearchCallMessages(long fromMessageId, int limit, boolean onlyMissed)Creates a function, which searches for call messages. Returns the results in reverse chronological order (i. e., in order of decreasing messageId). For optimal performance, the number of returned messages is chosen by TDLib.Returns
Messages- Parameters:
fromMessageId- Identifier of the message from which to search; use 0 to get results from the last message.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.onlyMissed- If true, returns only messages with missed/declined calls.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-