aboutsummaryrefslogtreecommitdiff
path: root/lib/jobs/generated/profile.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/jobs/generated/profile.h')
-rw-r--r--lib/jobs/generated/profile.h105
1 files changed, 0 insertions, 105 deletions
diff --git a/lib/jobs/generated/profile.h b/lib/jobs/generated/profile.h
deleted file mode 100644
index 9afc037b..00000000
--- a/lib/jobs/generated/profile.h
+++ /dev/null
@@ -1,105 +0,0 @@
-/******************************************************************************
- * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
- */
-
-#pragma once
-
-#include "../basejob.h"
-
-
-
-namespace QMatrixClient
-{
- // Operations
-
- class SetDisplayNameJob : public BaseJob
- {
- public:
- explicit SetDisplayNameJob(const QString& userId, const QString& displayname = {});
- };
-
- class GetDisplayNameJob : public BaseJob
- {
- public:
- explicit GetDisplayNameJob(const QString& userId);
-
- /** Construct a URL out of baseUrl and usual parameters passed to
- * GetDisplayNameJob. This function can be used when
- * a URL for GetDisplayNameJob is necessary but the job
- * itself isn't.
- */
- static QUrl makeRequestUrl(QUrl baseUrl, const QString& userId);
-
- ~GetDisplayNameJob() override;
-
- // Result properties
-
- const QString& displayname() const;
-
- protected:
- Status parseJson(const QJsonDocument& data) override;
-
- private:
- class Private;
- QScopedPointer<Private> d;
- };
-
- class SetAvatarUrlJob : public BaseJob
- {
- public:
- explicit SetAvatarUrlJob(const QString& userId, const QString& avatarUrl = {});
- };
-
- class GetAvatarUrlJob : public BaseJob
- {
- public:
- explicit GetAvatarUrlJob(const QString& userId);
-
- /** Construct a URL out of baseUrl and usual parameters passed to
- * GetAvatarUrlJob. This function can be used when
- * a URL for GetAvatarUrlJob is necessary but the job
- * itself isn't.
- */
- static QUrl makeRequestUrl(QUrl baseUrl, const QString& userId);
-
- ~GetAvatarUrlJob() override;
-
- // Result properties
-
- const QString& avatarUrl() const;
-
- protected:
- Status parseJson(const QJsonDocument& data) override;
-
- private:
- class Private;
- QScopedPointer<Private> d;
- };
-
- class GetUserProfileJob : public BaseJob
- {
- public:
- explicit GetUserProfileJob(const QString& userId);
-
- /** Construct a URL out of baseUrl and usual parameters passed to
- * GetUserProfileJob. This function can be used when
- * a URL for GetUserProfileJob is necessary but the job
- * itself isn't.
- */
- static QUrl makeRequestUrl(QUrl baseUrl, const QString& userId);
-
- ~GetUserProfileJob() override;
-
- // Result properties
-
- const QString& avatarUrl() const;
- const QString& displayname() const;
-
- protected:
- Status parseJson(const QJsonDocument& data) override;
-
- private:
- class Private;
- QScopedPointer<Private> d;
- };
-} // namespace QMatrixClient