blob: e732eea1de0e35c55a9c23528ae2f2993006f07f (
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
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#pragma once
#include "csapi/../application-service/definitions/user.h"
#include "converters.h"
#include <QtCore/QVector>
#include "converters.h"
namespace QMatrixClient
{
// Data structures
/// List of matched third party users.
struct UserBatch : QVector<User>
{
};
QJsonObject toJson(const UserBatch& pod);
template <> struct FromJson<UserBatch>
{
UserBatch operator()(const QJsonValue& jv);
};
} // namespace QMatrixClient
|