Package org.drinkless.tdlib
Class TdApi.GetMessageLink
- Enclosing class:
TdApi
Returns an HTTPS link to a message in a chat. Available only if messageProperties.canGetLink, or if messageProperties.canGetMediaTimestampLinks and a media timestamp link is generated. This is an offline method.
Returns MessageLink
-
Nested Class Summary
Nested classes/interfaces inherited from class org.drinkless.tdlib.TdApi.Function
TdApi.Function.Constructors -
Field Summary
FieldsModifier and TypeFieldDescriptionlongIdentifier of the chat to which the message belongs.intIf not 0, identifier of the checklist task in the message to be linked.static final intIdentifier uniquely determining type of the object.booleanPass true to create a link for the whole media album.booleanPass true to create a link to the message as a channel post comment, in a message thread, or a forum topic.intIf not 0, timestamp from which the video/audio/video note/voice note/story playing must start, in seconds.longIdentifier of the message.If not empty, identifier of the poll option in the message to be linked. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which returns an HTTPS link to a message in a chat.GetMessageLink(long chatId, long messageId, int mediaTimestamp, int checklistTaskId, String pollOptionId, boolean forAlbum, boolean inMessageThread) Creates a function, which returns an HTTPS link to a message in a chat. -
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
-
chatId
public long chatIdIdentifier of the chat to which the message belongs. -
messageId
public long messageIdIdentifier of the message. -
mediaTimestamp
public int mediaTimestampIf not 0, timestamp from which the video/audio/video note/voice note/story playing must start, in seconds. The media can be in the message content or in its link preview. -
checklistTaskId
public int checklistTaskIdIf not 0, identifier of the checklist task in the message to be linked. -
pollOptionId
If not empty, identifier of the poll option in the message to be linked. -
forAlbum
public boolean forAlbumPass true to create a link for the whole media album. -
inMessageThread
public boolean inMessageThreadPass true to create a link to the message as a channel post comment, in a message thread, or a forum topic. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
GetMessageLink
public GetMessageLink()Default constructor for a function, which returns an HTTPS link to a message in a chat. Available only if messageProperties.canGetLink, or if messageProperties.canGetMediaTimestampLinks and a media timestamp link is generated. This is an offline method.Returns
MessageLink -
GetMessageLink
public GetMessageLink(long chatId, long messageId, int mediaTimestamp, int checklistTaskId, String pollOptionId, boolean forAlbum, boolean inMessageThread) Creates a function, which returns an HTTPS link to a message in a chat. Available only if messageProperties.canGetLink, or if messageProperties.canGetMediaTimestampLinks and a media timestamp link is generated. This is an offline method.Returns
MessageLink- Parameters:
chatId- Identifier of the chat to which the message belongs.messageId- Identifier of the message.mediaTimestamp- If not 0, timestamp from which the video/audio/video note/voice note/story playing must start, in seconds. The media can be in the message content or in its link preview.checklistTaskId- If not 0, identifier of the checklist task in the message to be linked.pollOptionId- If not empty, identifier of the poll option in the message to be linked.forAlbum- Pass true to create a link for the whole media album.inMessageThread- Pass true to create a link to the message as a channel post comment, in a message thread, or a forum topic.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Function<TdApi.MessageLink>- Returns:
- this.CONSTRUCTOR
-