From 581a2f30920587b6256508a1dcd47338f4df2246 Mon Sep 17 00:00:00 2001 From: rubenlagus Date: Tue, 31 Dec 2019 12:43:19 +0100 Subject: [PATCH] Update 4.5 --- .../telegrambots/meta/api/objects/ChatPhoto.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/telegrambots-meta/src/main/java/org/telegram/telegrambots/meta/api/objects/ChatPhoto.java b/telegrambots-meta/src/main/java/org/telegram/telegrambots/meta/api/objects/ChatPhoto.java index 05e4cfba..aa7297a7 100644 --- a/telegrambots-meta/src/main/java/org/telegram/telegrambots/meta/api/objects/ChatPhoto.java +++ b/telegrambots-meta/src/main/java/org/telegram/telegrambots/meta/api/objects/ChatPhoto.java @@ -15,25 +15,27 @@ public class ChatPhoto implements BotApiObject { private static final String BIGFILEUNIQUEID_FIELD = "big_file_unique_id"; /** - * Unique file identifier of a small chat photo (160x160). + * File identifier of small (160x160) chat photo. * This file_id can be used only for photo download and only for as long as the photo is not changed. */ @JsonProperty(SMALLFILEID_FIELD) private String smallFileId; /** - * Unique identifier for a big chat photo (160x160), which is supposed to be the same over time and for different bots. + * Unique file identifier of small (160x160) chat photo, + * which is supposed to be the same over time and for different bots. * Can't be used to download or reuse the file. */ @JsonProperty(SMALLFILEUNIQUEID_FIELD) private String smallFileUniqueId; /** - * Unique file identifier of a big chat photo (640x640). + * File identifier of big (640x640) chat photo. * This file_id can be used only for photo download and only for as long as the photo is not changed. */ @JsonProperty(BIGFILEID_FIELD) private String bigFileId; /** - * Unique identifier for a big chat photo (640x640), which is supposed to be the same over time and for different bots. + * Unique file identifier of big (640x640) chat photo, + * which is supposed to be the same over time and for different bots. * Can't be used to download or reuse the file. */ @JsonProperty(BIGFILEUNIQUEID_FIELD)