blob: 6eb3ddf40871a62aaa7681efc03615336ca76a89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#pragma once
#include "../basejob.h"
#include <QtCore/QString>
namespace QMatrixClient
{
// Operations
class SetTypingJob : public BaseJob
{
public:
explicit SetTypingJob(const QString& userId, const QString& roomId, bool typing, int timeout = {});
};
} // namespace QMatrixClient
|