Module tdlight.api

Class TdApi.InputMessagePhoto

Enclosing class:
TdApi

public static final class TdApi.InputMessagePhoto extends TdApi.InputMessageContent
A photo message.
  • Field Details

    • photo

      public TdApi.InputFile photo
      Photo to send.
    • thumbnail

      public TdApi.InputThumbnail thumbnail
      Photo thumbnail to be sent; pass null to skip thumbnail uploading. The thumbnail is sent to the other party only in secret chats.
    • addedStickerFileIds

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

      public int width
      Photo width.
    • height

      public int height
      Photo height.
    • caption

      public TdApi.FormattedText caption
      Photo caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters.
    • ttl

      public int ttl
      Photo TTL (Time To Live), in seconds (0-60). A non-zero TTL can be specified only in private chats.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • InputMessagePhoto

      public InputMessagePhoto()
      A photo message.
    • InputMessagePhoto

      public InputMessagePhoto(TdApi.InputFile photo, TdApi.InputThumbnail thumbnail, int[] addedStickerFileIds, int width, int height, TdApi.FormattedText caption, int ttl)
      A photo message.
      Parameters:
      photo - InputFile Photo to send.
      thumbnail - InputThumbnail Photo thumbnail to be sent; pass null to skip thumbnail uploading. The thumbnail is sent to the other party only in secret chats.
      addedStickerFileIds - int[] File identifiers of the stickers added to the photo, if applicable.
      width - int Photo width.
      height - int Photo height.
      caption - FormattedText Photo caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters.
      ttl - int Photo TTL (Time To Live), in seconds (0-60). A non-zero TTL can be specified only in private chats.
    • InputMessagePhoto

      public InputMessagePhoto(DataInput input) throws IOException
      A photo message.
      Throws:
      IOException
  • Method Details