File indexing completed on 2025-02-02 04:51:49
0001 /* 0002 SPDX-FileCopyrightText: 2022-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include "librocketchatrestapi-qt_export.h" 0010 #include "restapiabstractjob.h" 0011 0012 #include <QMap> 0013 namespace RocketChatRestApi 0014 { 0015 class LIBROCKETCHATRESTAPI_QT_EXPORT VideoConferenceCancelJob : public RestApiAbstractJob 0016 { 0017 Q_OBJECT 0018 public: 0019 explicit VideoConferenceCancelJob(QObject *parent = nullptr); 0020 ~VideoConferenceCancelJob() override; 0021 0022 [[nodiscard]] bool start() override; 0023 [[nodiscard]] bool requireHttpAuthentication() const override; 0024 [[nodiscard]] bool canStart() const override; 0025 [[nodiscard]] QNetworkRequest request() const override; 0026 0027 [[nodiscard]] QJsonDocument json() const; 0028 0029 [[nodiscard]] QString callId() const; 0030 void setCallId(const QString &newCallId); 0031 0032 Q_SIGNALS: 0033 void videoConferenceCancelDone(const QJsonObject &replyObject); 0034 0035 private: 0036 Q_DISABLE_COPY(VideoConferenceCancelJob) 0037 LIBROCKETCHATRESTAPI_QT_NO_EXPORT void onPostRequestResponse(const QString &replyErrorString, const QJsonDocument &replyJson) override; 0038 0039 QString mCallId; 0040 }; 0041 }