diff options
author | Tindy X <49061470+tindy2013@users.noreply.github.com> | 2021-12-09 00:13:23 +0800 |
---|---|---|
committer | Tindy X <49061470+tindy2013@users.noreply.github.com> | 2021-12-09 00:13:23 +0800 |
commit | 075d2a5685ebd116916163d4184f53a0789b797b (patch) | |
tree | 5af7cd245ba26d95c97096ccc61f71166c34cf58 /include/tgbot | |
parent | 6b38783cd1f6ef6292cdf972a35ba4b79e482aa9 (diff) |
Add is_automatic_forward property to Message object
Diffstat (limited to 'include/tgbot')
-rw-r--r-- | include/tgbot/types/Message.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/tgbot/types/Message.h b/include/tgbot/types/Message.h index cde5aae..700f5d1 100644 --- a/include/tgbot/types/Message.h +++ b/include/tgbot/types/Message.h @@ -263,6 +263,11 @@ public: * @brief Optional. Inline keyboard attached to the message. login_url buttons are represented as ordinary url buttons. */ InlineKeyboardMarkup::Ptr replyMarkup; + + /** + * @brief Optional. Message is automatically forwarded from bounded channel. + */ + bool automaticForward = false; }; } |