Module tdlight.api

Class TdApi.InputMessageAnimation

Enclosing class:
TdApi

public static final class TdApi.InputMessageAnimation extends TdApi.InputMessageContent
An animation message (GIF-style).
  • Field Details

    • animation

      public TdApi.InputFile animation
      Animation file to be sent.
    • thumbnail

      public TdApi.InputThumbnail thumbnail
      Animation thumbnail; pass null to skip thumbnail uploading.
    • addedStickerFileIds

      public int[] addedStickerFileIds
      File identifiers of the stickers added to the animation, if applicable.
    • duration

      public int duration
      Duration of the animation, in seconds.
    • width

      public int width
      Width of the animation; may be replaced by the server.
    • height

      public int height
      Height of the animation; may be replaced by the server.
    • caption

      public TdApi.FormattedText caption
      Animation caption; pass null to use an empty caption; 0-getOption("message_caption_length_max") characters.
    • hasSpoiler

      public boolean hasSpoiler
      True, if the animation preview must be covered by a spoiler animation; not supported in secret chats.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • InputMessageAnimation

      public InputMessageAnimation()
      An animation message (GIF-style).
    • InputMessageAnimation

      public InputMessageAnimation(TdApi.InputFile animation, TdApi.InputThumbnail thumbnail, int[] addedStickerFileIds, int duration, int width, int height, TdApi.FormattedText caption, boolean hasSpoiler)
      An animation message (GIF-style).
      Parameters:
      animation - InputFile Animation file to be sent.
      thumbnail - InputThumbnail Animation thumbnail; pass null to skip thumbnail uploading.
      addedStickerFileIds - int[] File identifiers of the stickers added to the animation, if applicable.
      duration - int Duration of the animation, in seconds.
      width - int Width of the animation; may be replaced by the server.
      height - int Height of the animation; may be replaced by the server.
      caption - FormattedText Animation caption; pass null to use an empty caption; 0-getOption("message_caption_length_max") characters.
      hasSpoiler - boolean True, if the animation preview must be covered by a spoiler animation; not supported in secret chats.
    • InputMessageAnimation

      public InputMessageAnimation(DataInput input) throws IOException
      An animation message (GIF-style).
      Throws:
      IOException
  • Method Details