Class TdApi.GetMessageEmbeddingCode

Enclosing class:
TdApi

public static class TdApi.GetMessageEmbeddingCode extends TdApi.Function<TdApi.Text>
Returns an HTML code for embedding the message. Available only if messageProperties.canGetEmbeddingCode.

Returns Text

  • Nested Class Summary

    Nested classes/interfaces inherited from class org.drinkless.tdlib.TdApi.Function

    TdApi.Function.Constructors
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    long
    Identifier of the chat to which the message belongs.
    static final int
    Identifier uniquely determining type of the object.
    boolean
    Pass true to return an HTML code for embedding of the whole media album.
    long
    Identifier of the message.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Default constructor for a function, which returns an HTML code for embedding the message.
    GetMessageEmbeddingCode(long chatId, long messageId, boolean forAlbum)
    Creates a function, which returns an HTML code for embedding the message.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns an identifier uniquely determining type of the object.

    Methods inherited from class org.drinkless.tdlib.TdApi.Function

    toString

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • chatId

      public long chatId
      Identifier of the chat to which the message belongs.
    • messageId

      public long messageId
      Identifier of the message.
    • forAlbum

      public boolean forAlbum
      Pass true to return an HTML code for embedding of the whole media album.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      Identifier uniquely determining type of the object.
      See Also:
  • Constructor Details

    • GetMessageEmbeddingCode

      public GetMessageEmbeddingCode()
      Default constructor for a function, which returns an HTML code for embedding the message. Available only if messageProperties.canGetEmbeddingCode.

      Returns Text

    • GetMessageEmbeddingCode

      public GetMessageEmbeddingCode(long chatId, long messageId, boolean forAlbum)
      Creates a function, which returns an HTML code for embedding the message. Available only if messageProperties.canGetEmbeddingCode.

      Returns Text

      Parameters:
      chatId - Identifier of the chat to which the message belongs.
      messageId - Identifier of the message.
      forAlbum - Pass true to return an HTML code for embedding of the whole media album.
  • Method Details