Class TdApi.InputMessagePhoto

    • Field Detail

      • 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
        Identifier uniquely determining type of the object.
        See Also:
        Constant Field Values
    • Constructor Detail

      • 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 - Photo to send.
        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 - File identifiers of the stickers added to the photo, if applicable.
        width - Photo width.
        height - Photo height.
        caption - Photo caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters.
        ttl - Photo TTL (Time To Live), in seconds (0-60). A non-zero TTL can be specified only in private chats.