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