Package org.drinkless.tdlib
Class TdApi.InputMessagePhoto
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.InputMessageContent
-
- org.drinkless.tdlib.TdApi.InputMessagePhoto
-
- Enclosing class:
- TdApi
public static class TdApi.InputMessagePhoto extends TdApi.InputMessageContent
A photo message.
-
-
Field Summary
Fields Modifier and Type Field Description int[]addedStickerFileIdsFile identifiers of the stickers added to the photo, if applicable.TdApi.FormattedTextcaptionPhoto caption; pass null to use an empty caption; 0-GetOption("message_caption_length_max") characters.static intCONSTRUCTORIdentifier uniquely determining type of the object.intheightPhoto height.TdApi.InputFilephotoPhoto to send.TdApi.InputThumbnailthumbnailPhoto thumbnail to be sent; pass null to skip thumbnail uploading.intttlPhoto TTL (Time To Live), in seconds (0-60).intwidthPhoto width.
-
Constructor Summary
Constructors Constructor Description InputMessagePhoto()A photo message.InputMessagePhoto(TdApi.InputFile photo, TdApi.InputThumbnail thumbnail, int[] addedStickerFileIds, int width, int height, TdApi.FormattedText caption, int ttl)A photo message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
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
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.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-