Package org.drinkless.tdlib
Class TdApi.GetMessagePublicForwards
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Function
-
- org.drinkless.tdlib.TdApi.GetMessagePublicForwards
-
- Enclosing class:
- TdApi
public static class TdApi.GetMessagePublicForwards extends TdApi.Function
Returns forwarded copies of a channel message to different public channels. For optimal performance, the number of returned messages is chosen by TDLib.Returns
FoundMessages
-
-
Field Summary
Fields Modifier and Type Field Description longchatIdChat identifier of the message.static intCONSTRUCTORIdentifier uniquely determining type of the object.intlimitThe maximum number of messages to be returned; must be positive and can't be greater than 100.longmessageIdMessage identifier.StringoffsetOffset of the first entry to return as received from the previous request; use empty string to get first chunk of results.
-
Constructor Summary
Constructors Constructor Description GetMessagePublicForwards()Default constructor for a function, which returns forwarded copies of a channel message to different public channels.GetMessagePublicForwards(long chatId, long messageId, String offset, int limit)Creates a function, which returns forwarded copies of a channel message to different public channels.
-
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
Chat identifier of the message.
-
messageId
public long messageId
Message identifier.
-
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; must be positive and can't be greater than 100. 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 CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
GetMessagePublicForwards
public GetMessagePublicForwards()
Default constructor for a function, which returns forwarded copies of a channel message to different public channels. For optimal performance, the number of returned messages is chosen by TDLib.Returns
FoundMessages
-
GetMessagePublicForwards
public GetMessagePublicForwards(long chatId, long messageId, String offset, int limit)Creates a function, which returns forwarded copies of a channel message to different public channels. For optimal performance, the number of returned messages is chosen by TDLib.Returns
FoundMessages- Parameters:
chatId- Chat identifier of the message.messageId- Message identifier.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; must be positive and can't be greater than 100. For optimal performance, the number of returned messages is chosen by TDLib and can be smaller than the specified limit.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-