From 67a543eb596b68a166d7f790ea27d5d4e70e10b7 Mon Sep 17 00:00:00 2001 From: Andrea Giove Date: Sat, 26 Mar 2016 19:16:34 +0100 Subject: Updated Message class --- include/tgbot/types/Message.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'include/tgbot') diff --git a/include/tgbot/types/Message.h b/include/tgbot/types/Message.h index daedf03..ea53cf3 100644 --- a/include/tgbot/types/Message.h +++ b/include/tgbot/types/Message.h @@ -114,6 +114,8 @@ public: */ Video::Ptr video; + // TODO voice + /** * Optional. Message is a shared contact, information about the contact. */ @@ -158,6 +160,27 @@ public: * Optional. Text description of the photo or the video. */ std::string caption; + + /** + * Optional. Service message: the supergroup has been created. + */ + bool supergroupChatCreated; + + /** + * Optional. Service message: the channel has been created. + */ + bool channelChatCreated; + + /** + * Optional. The group has been migrated to a supergroup with the specified identifier, not exceeding 1e13 by absolute value. + */ + int64_t migrateToChatId; + + /** + * Optional. The supergroup has been migrated from a group with the specified identifier, not exceeding 1e13 by absolute value + */ + int64_t migrateFromChatId; + }; } -- cgit v1.2.3