aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/definitions/push_ruleset.h
blob: e1a2c142a736e2b8f0ae59eb8b5946ff09bd57f1 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/******************************************************************************
 * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
 */

#pragma once



#include "converters.h"

#include "csapi/definitions/push_rule.h"
#include "converters.h"
#include <QtCore/QVector>

namespace QMatrixClient
{

// Data structures


struct PushRuleset
{

    QVector<PushRule> content;

    QVector<PushRule> override;

    QVector<PushRule> room;

    QVector<PushRule> sender;

    QVector<PushRule> underride;


};

template <> struct JsonObjectConverter<PushRuleset>
{
    static void dumpTo(QJsonObject& jo, const PushRuleset& pod);
    static void fillFrom(const QJsonObject& jo, PushRuleset& pod);};



} // namespace QMatrixClient