public static class TdApi.InputMessagePhoto extends TdApi.InputMessageContent
| Modifier and Type | Field and Description |
|---|---|
int[] |
addedStickerFileIds
File identifiers of the stickers added to the photo, if applicable.
|
TdApi.FormattedText |
caption
Photo caption; pass null to use an empty caption; 0-getOption("message_caption_length_max") characters.
|
static int |
CONSTRUCTOR
Identifier uniquely determining type of the object.
|
boolean |
hasSpoiler
True, if the photo preview must be covered by a spoiler animation; not supported in secret chats.
|
int |
height
Photo height.
|
TdApi.InputFile |
photo
Photo to send.
|
TdApi.MessageSelfDestructType |
selfDestructType
Photo self-destruct type; pass null if none; private chats only.
|
boolean |
showCaptionAboveMedia
True, if the caption must be shown above the photo; otherwise, the caption must be shown below the photo; not supported in secret chats.
|
TdApi.InputThumbnail |
thumbnail
Photo thumbnail to be sent; pass null to skip thumbnail uploading.
|
int |
width
Photo width.
|
| Constructor and Description |
|---|
InputMessagePhoto()
A photo message.
|
InputMessagePhoto(TdApi.InputFile photo,
TdApi.InputThumbnail thumbnail,
int[] addedStickerFileIds,
int width,
int height,
TdApi.FormattedText caption,
boolean showCaptionAboveMedia,
TdApi.MessageSelfDestructType selfDestructType,
boolean hasSpoiler)
A photo message.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getConstructor()
Returns an identifier uniquely determining type of the object.
|
toStringpublic TdApi.InputFile photo
public TdApi.InputThumbnail thumbnail
public int[] addedStickerFileIds
public int width
public int height
public TdApi.FormattedText caption
public boolean showCaptionAboveMedia
public TdApi.MessageSelfDestructType selfDestructType
public boolean hasSpoiler
public static final int CONSTRUCTOR
public InputMessagePhoto()
public InputMessagePhoto(TdApi.InputFile photo, TdApi.InputThumbnail thumbnail, int[] addedStickerFileIds, int width, int height, TdApi.FormattedText caption, boolean showCaptionAboveMedia, TdApi.MessageSelfDestructType selfDestructType, boolean hasSpoiler)
photo - Photo to send. The photo must be at most 10 MB in size. The photo's width and height must not exceed 10000 in total. Width and height ratio must be at most 20.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.showCaptionAboveMedia - True, if the caption must be shown above the photo; otherwise, the caption must be shown below the photo; not supported in secret chats.selfDestructType - Photo self-destruct type; pass null if none; private chats only.hasSpoiler - True, if the photo preview must be covered by a spoiler animation; not supported in secret chats.public int getConstructor()
TdApi.ObjectgetConstructor in class TdApi.Object