mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
19 lines
481 B
C++
19 lines
481 B
C++
#include "providers/twitch/pubsubmessages/ChatModeratorAction.hpp"
|
|
|
|
#include "util/QMagicEnum.hpp"
|
|
|
|
namespace chatterino {
|
|
|
|
PubSubChatModeratorActionMessage::PubSubChatModeratorActionMessage(
|
|
const QJsonObject &root)
|
|
: typeString(root.value("type").toString())
|
|
, data(root.value("data").toObject())
|
|
{
|
|
auto oType = qmagicenum::enumCast<Type>(this->typeString);
|
|
if (oType.has_value())
|
|
{
|
|
this->type = oType.value();
|
|
}
|
|
}
|
|
|
|
} // namespace chatterino
|