tgbot-cpp
Loading...
Searching...
No Matches
ForumTopicCreated.h
Go to the documentation of this file.
1#ifndef TGBOT_FORUMTOPICCREATED_H
2#define TGBOT_FORUMTOPICCREATED_H
3
4#include <cstdint>
5#include <string>
6#include <memory>
7
8namespace TgBot {
9
16public:
17 typedef std::shared_ptr<ForumTopicCreated> Ptr;
18
22 std::string name;
23
27 std::int32_t iconColor;
28
32 std::string iconCustomEmojiId;
33};
34}
35
36#endif //TGBOT_FORUMTOPICCREATED_H
This object represents a service message about a new forum topic created in the chat.
std::string name
Name of the topic.
std::string iconCustomEmojiId
Optional. Unique identifier of the custom emoji shown as the topic icon.
std::shared_ptr< ForumTopicCreated > Ptr
std::int32_t iconColor
Color of the topic icon in RGB format.
Definition Api.h:39