feat(eventsub): implement (shared chat) delete (#5993)

This commit is contained in:
pajlada
2025-02-26 14:33:31 +01:00
committed by GitHub
parent 1bf87e46cd
commit b957af4f50
9 changed files with 829 additions and 13 deletions
@@ -257,13 +257,14 @@ struct Unraid {
struct Delete {
static constexpr std::string_view TAG = "delete";
std::string userID;
std::string userLogin;
std::string userName;
std::string messageID;
std::string messageBody;
String userID;
String userLogin;
String userName;
String messageID;
String messageBody;
};
struct SharedChatDelete : public Ban {
struct SharedChatDelete : public Delete {
static constexpr std::string_view TAG = "shared_chat_delete";
};