blob: cb96f35889520f60f2c84404ba05ebd8ac17571d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// SPDX-FileCopyrightText: 2017 Marius Gripsgard <marius@ubports.com>
// SPDX-FileCopyrightText: 2018 Josip Delic <delijati@googlemail.com>
// SPDX-FileCopyrightText: 2018 Kitsune Ral <Kitsune-Ral@users.sf.net>
// SPDX-FileCopyrightText: 2020 Carl Schwan <carlschwan@kde.org>
// SPDX-License-Identifier: LGPL-2.1-or-later
#pragma once
#include "roomevent.h"
namespace Quotient {
class CallCandidatesEvent : public CallEventBase {
public:
QUO_EVENT(CallCandidatesEvent, "m.call.candidates")
explicit CallCandidatesEvent(const QJsonObject& obj)
: CallEventBase(typeId(), obj)
{}
explicit CallCandidatesEvent(const QString& callId,
const QJsonArray& candidates)
: CallEventBase(typeId(), matrixTypeId(), callId, 0,
{ { QStringLiteral("candidates"), candidates } })
{}
QUO_CONTENT_GETTER(QJsonArray, candidates)
QUO_CONTENT_GETTER(QString, callId)
QUO_CONTENT_GETTER(int, version)
};
} // namespace Quotient
|