Package org.drinkless.tdlib
Class TdApi.LoadDirectMessagesChatTopics
- Enclosing class:
- TdApi
Loads more topics in a channel direct messages chat administered by the current user. The loaded topics will be sent through updateDirectMessagesChatTopic. Topics are sorted by their topic.order in descending order. Returns a 404 error if all topics have been loaded.
Returns Ok
-
Field Summary
FieldsModifier and TypeFieldDescriptionlong
Chat identifier of the channel direct messages chat.static final int
Identifier uniquely determining type of the object.int
The maximum number of topics to be loaded. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which loads more topics in a channel direct messages chat administered by the current user.LoadDirectMessagesChatTopics
(long chatId, int limit) Creates a function, which loads more topics in a channel direct messages chat administered by the current user. -
Method Summary
Modifier and TypeMethodDescriptionint
Returns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
Field Details
-
chatId
public long chatIdChat identifier of the channel direct messages chat. -
limit
public int limitThe maximum number of topics to be loaded. For optimal performance, the number of loaded topics is chosen by TDLib and can be smaller than the specified limit, even if the end of the list is not reached. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
LoadDirectMessagesChatTopics
public LoadDirectMessagesChatTopics()Default constructor for a function, which loads more topics in a channel direct messages chat administered by the current user. The loaded topics will be sent through updateDirectMessagesChatTopic. Topics are sorted by their topic.order in descending order. Returns a 404 error if all topics have been loaded.Returns
Ok
-
LoadDirectMessagesChatTopics
public LoadDirectMessagesChatTopics(long chatId, int limit) Creates a function, which loads more topics in a channel direct messages chat administered by the current user. The loaded topics will be sent through updateDirectMessagesChatTopic. Topics are sorted by their topic.order in descending order. Returns a 404 error if all topics have been loaded.Returns
Ok
- Parameters:
chatId
- Chat identifier of the channel direct messages chat.limit
- The maximum number of topics to be loaded. For optimal performance, the number of loaded topics is chosen by TDLib and can be smaller than the specified limit, even if the end of the list is not reached.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.Object
Returns an identifier uniquely determining type of the object.- Specified by:
getConstructor
in classTdApi.Object
- Returns:
- this.CONSTRUCTOR
-