tgbotxx 1.1.6.9
Telegram Bot C++ Library
Loading...
Searching...
No Matches
ForumTopicReopened.hpp
Go to the documentation of this file.
1#pragma once
3
4namespace tgbotxx {
9 ForumTopicReopened() = default;
10 explicit ForumTopicReopened(const nl::json& json) {
11 fromJson(json);
12 }
13
16 nl::json toJson() const {
17 nl::json json = nl::json::object();
18 return json;
19 }
20
22 void fromJson([[maybe_unused]] const nl::json& json) {
23 }
24 };
25}
This object represents a service message about a forum topic reopened in the chat....
void fromJson(const nl::json &json)
Deserializes this object from JSON.
nl::json toJson() const
Serializes this object to JSON.
ForumTopicReopened(const nl::json &json)