diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-01-05 11:12:48 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-01-09 11:54:43 +0900 |
commit | 4c1d52601be66caafa913171b5d5ed47ee4eb67d (patch) | |
tree | 66b59987ae45f60ad0816ccff799eaca63cb5a99 /jobs/generated/create_room.h | |
parent | 01806d00977578681a401ad294a957ecec0a3d53 (diff) | |
download | libquotient-4c1d52601be66caafa913171b5d5ed47ee4eb67d.tar.gz libquotient-4c1d52601be66caafa913171b5d5ed47ee4eb67d.zip |
jobs/generated: content-repo.*, create_room.*
Diffstat (limited to 'jobs/generated/create_room.h')
-rw-r--r-- | jobs/generated/create_room.h | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/jobs/generated/create_room.h b/jobs/generated/create_room.h new file mode 100644 index 00000000..a92cb106 --- /dev/null +++ b/jobs/generated/create_room.h @@ -0,0 +1,56 @@ +/****************************************************************************** + * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN + */ + +#pragma once + +#include "../basejob.h" + +#include <QtCore/QVector> +#include <QtCore/QJsonObject> +#include <QtCore/QString> + +#include "converters.h" + +namespace QMatrixClient +{ + // Operations + + class CreateRoomJob : public BaseJob + { + public: + // Inner data structures + + struct Invite3pid + { + QString idServer; + QString medium; + QString address; + + operator QJsonObject() const; + }; + + struct StateEvent + { + QString type; + QString stateKey; + QJsonObject content; + + operator QJsonObject() const; + }; + + // End of inner data structures + + explicit CreateRoomJob(const QString& visibility = {}, const QString& roomAliasName = {}, const QString& name = {}, const QString& topic = {}, const QVector<QString>& invite = {}, const QVector<Invite3pid>& invite3pid = {}, const QJsonObject& creationContent = {}, const QVector<StateEvent>& initialState = {}, const QString& preset = {}, bool isDirect = {}); + ~CreateRoomJob() override; + + const QString& roomId() const; + + protected: + Status parseJson(const QJsonDocument& data) override; + + private: + class Private; + QScopedPointer<Private> d; + }; +} // namespace QMatrixClient |