aboutsummaryrefslogtreecommitdiff
path: root/lib/events/roomkeyevent.h
blob: d021fbec051aa384bc68a7f3f0f9efb3b14db319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// SPDX-FileCopyrightText: 2019 Alexey Andreyev <aa13q@ya.ru>
// SPDX-License-Identifier: LGPL-2.1-or-later

#pragma once

#include "event.h"

namespace Quotient {
class RoomKeyEvent : public Event
{
public:
    DEFINE_EVENT_TYPEID("m.room_key", RoomKeyEvent)

    explicit RoomKeyEvent(const QJsonObject& obj);

    QString algorithm() const { return contentPart<QString>("algorithm"_ls); }
    QString roomId() const { return contentPart<QString>(RoomIdKeyL); }
    QString sessionId() const { return contentPart<QString>("session_id"_ls); }
    QString sessionKey() const { return contentPart<QString>("session_key"_ls); }
};
REGISTER_EVENT_TYPE(RoomKeyEvent)
} // namespace Quotient