Warning, file /network/ruqola/src/rocketchatrestapi-qt/channellistjob.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002    SPDX-FileCopyrightText: 2018-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "librestapi_private_export.h"
0010 #include "restapiabstractjob.h"
0011 namespace RocketChatRestApi
0012 {
0013 class LIBROCKETCHATRESTAPI_QT_TESTS_EXPORT ChannelListJob : public RestApiAbstractJob
0014 {
0015     Q_OBJECT
0016 public:
0017     explicit ChannelListJob(QObject *parent = nullptr);
0018     ~ChannelListJob() override;
0019 
0020     [[nodiscard]] bool start() override;
0021     [[nodiscard]] bool requireHttpAuthentication() const override;
0022 
0023     [[nodiscard]] QNetworkRequest request() const override;
0024 
0025 Q_SIGNALS:
0026     void channelListDone(const QJsonObject &obj);
0027 
0028 private:
0029     Q_DISABLE_COPY(ChannelListJob)
0030     LIBROCKETCHATRESTAPI_QT_NO_EXPORT void onGetRequestResponse(const QString &replyErrorString, const QJsonDocument &reply) override;
0031 };
0032 }