Add Message.forum_topic_edited.

This commit is contained in:
levlam 2022-12-29 17:37:59 +03:00
parent 28106d9df4
commit 38df7114f2
2 changed files with 26 additions and 3 deletions

View File

@ -1402,6 +1402,27 @@ class Client::JsonForumTopicCreated final : public Jsonable {
const td_api::messageForumTopicCreated *forum_topic_created_;
};
class Client::JsonForumTopicEdited final : public Jsonable {
public:
explicit JsonForumTopicEdited(const td_api::messageForumTopicEdited *forum_topic_edited)
: forum_topic_edited_(forum_topic_edited) {
}
void store(JsonValueScope *scope) const {
auto object = scope->enter_object();
if (!forum_topic_edited_->name_.empty()) {
object("name", forum_topic_edited_->name_);
}
if (forum_topic_edited_->edit_icon_custom_emoji_id_) {
object("icon_custom_emoji_id", forum_topic_edited_->icon_custom_emoji_id_ == 0
? td::string()
: td::to_string(forum_topic_edited_->icon_custom_emoji_id_));
}
}
private:
const td_api::messageForumTopicEdited *forum_topic_edited_;
};
class Client::JsonForumTopicIsClosedToggled final : public Jsonable {
public:
void store(JsonValueScope *scope) const {
@ -2049,8 +2070,11 @@ void Client::JsonMessage::store(JsonValueScope *scope) const {
object("forum_topic_created", JsonForumTopicCreated(content));
break;
}
case td_api::messageForumTopicEdited::ID:
case td_api::messageForumTopicEdited::ID: {
auto content = static_cast<const td_api::messageForumTopicEdited *>(message_->content.get());
object("forum_topic_edited", JsonForumTopicEdited(content));
break;
}
case td_api::messageForumTopicIsClosedToggled::ID: {
auto content = static_cast<const td_api::messageForumTopicIsClosedToggled *>(message_->content.get());
if (content->is_closed_) {
@ -10361,8 +10385,6 @@ bool Client::need_skip_update_message(int64 chat_id, const object_ptr<td_api::me
return true;
case td_api::messageGiftedPremium::ID:
return true;
case td_api::messageForumTopicEdited::ID:
return true;
case td_api::messageSuggestProfilePhoto::ID:
return true;
case td_api::messageBotWriteAccessAllowed::ID:

View File

@ -143,6 +143,7 @@ class Client final : public WebhookActor::Callback {
class JsonChatMemberUpdated;
class JsonChatJoinRequest;
class JsonForumTopicCreated;
class JsonForumTopicEdited;
class JsonForumTopicIsClosedToggled;
class JsonForumTopicInfo;
class JsonGameHighScore;