Module tdlight.api

Class TdApi.EditInlineMessageCaption

Enclosing class:
TdApi

public static final class TdApi.EditInlineMessageCaption extends TdApi.Function<TdApi.Ok>
Edits the caption of an inline message sent via a bot; for bots only. Returns Ok
  • Field Details

    • inlineMessageId

      public String inlineMessageId
      Inline message identifier.
    • replyMarkup

      public TdApi.ReplyMarkup replyMarkup
      The new message reply markup; pass null if none.
    • caption

      public TdApi.FormattedText caption
      New message content caption; pass null to remove caption; 0-getOption("message_caption_length_max") characters.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • EditInlineMessageCaption

      public EditInlineMessageCaption()
      Edits the caption of an inline message sent via a bot; for bots only. Returns Ok
    • EditInlineMessageCaption

      public EditInlineMessageCaption(String inlineMessageId, TdApi.ReplyMarkup replyMarkup, TdApi.FormattedText caption)
      Edits the caption of an inline message sent via a bot; for bots only. Returns Ok
      Parameters:
      inlineMessageId - String Inline message identifier.
      replyMarkup - ReplyMarkup The new message reply markup; pass null if none.
      caption - FormattedText New message content caption; pass null to remove caption; 0-getOption("message_caption_length_max") characters.
    • EditInlineMessageCaption

      public EditInlineMessageCaption(DataInput input) throws IOException
      Edits the caption of an inline message sent via a bot; for bots only. Returns Ok
      Throws:
      IOException
  • Method Details