aboutsummaryrefslogtreecommitdiff
path: root/jobs/generated/administrative_contact.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2017-12-07 11:40:46 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2017-12-07 12:49:07 +0900
commit879e0bd17abedcc93d005eb7b66f6e9aa762200a (patch)
tree451a8e9bb1e5f7ed3e5f172427d0302bec2ec2f6 /jobs/generated/administrative_contact.h
parent80588a782ce702384802e3e0cb469f71e5640ef4 (diff)
downloadlibquotient-879e0bd17abedcc93d005eb7b66f6e9aa762200a.tar.gz
libquotient-879e0bd17abedcc93d005eb7b66f6e9aa762200a.zip
New generated jobs for: room directory, 3PIDs, redactions, typing notifications and others
Closes #128 (the issue has the full list of jobs arriving herewith).
Diffstat (limited to 'jobs/generated/administrative_contact.h')
-rw-r--r--jobs/generated/administrative_contact.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/jobs/generated/administrative_contact.h b/jobs/generated/administrative_contact.h
new file mode 100644
index 00000000..fa6beba9
--- /dev/null
+++ b/jobs/generated/administrative_contact.h
@@ -0,0 +1,70 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+
+#pragma once
+
+#include "../basejob.h"
+
+#include <QtCore/QVector>
+
+#include "converters.h"
+
+namespace QMatrixClient
+{
+ // Operations
+
+ class GetAccount3PIDsJob : public BaseJob
+ {
+ public:
+ // Inner data structures
+
+ struct ThirdPartyIdentifier
+ {
+ QString medium;
+ QString address;
+
+ operator QJsonObject() const;
+ };
+
+ // End of inner data structures
+
+ explicit GetAccount3PIDsJob();
+ ~GetAccount3PIDsJob() override;
+
+ const QVector<ThirdPartyIdentifier>& threepids() const;
+
+ protected:
+ Status parseJson(const QJsonDocument& data) override;
+
+ private:
+ class Private;
+ Private* d;
+ };
+
+ class Post3PIDsJob : public BaseJob
+ {
+ public:
+ // Inner data structures
+
+ struct ThreePidCredentials
+ {
+ QString clientSecret;
+ QString idServer;
+ QString sid;
+
+ operator QJsonObject() const;
+ };
+
+ // End of inner data structures
+
+ explicit Post3PIDsJob(const ThreePidCredentials& threePidCreds, bool bind = {});
+ };
+
+ class RequestTokenTo3PIDJob : public BaseJob
+ {
+ public:
+ explicit RequestTokenTo3PIDJob();
+ };
+} // namespace QMatrixClient