mirror of
https://gitlab.com/spaceti-app/integrations/common/server-sdk.git
synced 2026-07-12 23:00:46 +02:00
26 lines
503 B
C++
26 lines
503 B
C++
#pragma once
|
|
|
|
#include "request.h"
|
|
|
|
namespace serversdk {
|
|
|
|
class SoapRequest : public Request
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SoapRequest(QString action, QString endpoint, QByteArray data);
|
|
QNetworkRequest networkRequest() const override;
|
|
|
|
QString soapAction() const;
|
|
void setSoapAction(const QString &soapAction);
|
|
bool isSoapVersion12() const;
|
|
void setSoapVersion12(bool isSoapVersion12);
|
|
|
|
private:
|
|
QString mSoapAction;
|
|
bool mSoapVersion12 = false;
|
|
};
|
|
|
|
} // namespace serversdk
|
|
|