Package org.drinkless.tdlib
Class TdApi.EditMessageMedia
- Enclosing class:
- TdApi
Edits the media content of a message, including message caption. If only the caption needs to be edited, use editMessageCaption instead. The type of message content in an album can't be changed with exception of replacing a photo with a video or vice versa. Returns the edited message after the edit is completed on the server side.
Returns Message
-
Field Summary
FieldsModifier and TypeFieldDescriptionlong
The chat the message belongs to.static final int
Identifier uniquely determining type of the object.New content of the message.long
Identifier of the message.The new message reply markup; pass null if none; for bots only. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which edits the media content of a message, including message caption.EditMessageMedia
(long chatId, long messageId, TdApi.ReplyMarkup replyMarkup, TdApi.InputMessageContent inputMessageContent) Creates a function, which edits the media content of a message, including message caption. -
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 chatIdThe chat the message belongs to. -
messageId
public long messageIdIdentifier of the message. Use messageProperties.canEditMedia to check whether the message can be edited. -
replyMarkup
The new message reply markup; pass null if none; for bots only. -
inputMessageContent
New content of the message. Must be one of the following types: inputMessageAnimation, inputMessageAudio, inputMessageDocument, inputMessagePhoto or inputMessageVideo. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
EditMessageMedia
public EditMessageMedia()Default constructor for a function, which edits the media content of a message, including message caption. If only the caption needs to be edited, use editMessageCaption instead. The type of message content in an album can't be changed with exception of replacing a photo with a video or vice versa. Returns the edited message after the edit is completed on the server side.Returns
Message
-
EditMessageMedia
public EditMessageMedia(long chatId, long messageId, TdApi.ReplyMarkup replyMarkup, TdApi.InputMessageContent inputMessageContent) Creates a function, which edits the media content of a message, including message caption. If only the caption needs to be edited, use editMessageCaption instead. The type of message content in an album can't be changed with exception of replacing a photo with a video or vice versa. Returns the edited message after the edit is completed on the server side.Returns
Message
- Parameters:
chatId
- The chat the message belongs to.messageId
- Identifier of the message. Use messageProperties.canEditMedia to check whether the message can be edited.replyMarkup
- The new message reply markup; pass null if none; for bots only.inputMessageContent
- New content of the message. Must be one of the following types: inputMessageAnimation, inputMessageAudio, inputMessageDocument, inputMessagePhoto or inputMessageVideo.
-
-
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
-