Package org.drinkless.tdlib
Class TdApi.GetSavedMessagesTopicHistory
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.Function<TdApi.Messages>
org.drinkless.tdlib.TdApi.GetSavedMessagesTopicHistory
- Enclosing class:
- TdApi
Returns messages in a Saved Messages topic. The messages are returned in reverse chronological order (i.e., in order of decreasing messageId).
Returns Messages
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.longIdentifier of the message starting from which messages must be fetched; use 0 to get results from the last message.intThe maximum number of messages to be returned; must be positive and can't be greater than 100.intSpecify 0 to get results from exactly the message fromMessageId or a negative number from -99 to -1 to get additionally -offset newer messages.longIdentifier of Saved Messages topic which messages will be fetched. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which returns messages in a Saved Messages topic.GetSavedMessagesTopicHistory(long savedMessagesTopicId, long fromMessageId, int offset, int limit) Creates a function, which returns messages in a Saved Messages topic. -
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
-
savedMessagesTopicId
public long savedMessagesTopicIdIdentifier of Saved Messages topic which messages will be fetched. -
fromMessageId
public long fromMessageIdIdentifier of the message starting from which messages must be fetched; use 0 to get results from the last message. -
offset
public int offsetSpecify 0 to get results from exactly the message fromMessageId or a negative number from -99 to -1 to get additionally -offset newer messages. -
limit
public int limitThe maximum number of messages to be returned; must be positive and can't be greater than 100. If the offset is negative, then the limit must be greater than or equal to -offset. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
GetSavedMessagesTopicHistory
public GetSavedMessagesTopicHistory()Default constructor for a function, which returns messages in a Saved Messages topic. The messages are returned in reverse chronological order (i.e., in order of decreasing messageId).Returns
Messages -
GetSavedMessagesTopicHistory
public GetSavedMessagesTopicHistory(long savedMessagesTopicId, long fromMessageId, int offset, int limit) Creates a function, which returns messages in a Saved Messages topic. The messages are returned in reverse chronological order (i.e., in order of decreasing messageId).Returns
Messages- Parameters:
savedMessagesTopicId- Identifier of Saved Messages topic which messages will be fetched.fromMessageId- Identifier of the message starting from which messages must be fetched; use 0 to get results from the last message.offset- Specify 0 to get results from exactly the message fromMessageId or a negative number from -99 to -1 to get additionally -offset newer messages.limit- The maximum number of messages to be returned; must be positive and can't be greater than 100. If the offset is negative, then the limit must be greater than or equal to -offset. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit.
-
-
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
-