QtRestClient
3.0.0
A library for generic JSON-based REST-APIs, with a mechanism to map JSON to Qt objects
|
1 #ifndef QTRESTCLIENT_QMLGENERICRESTREPLY_H
2 #define QTRESTCLIENT_QMLGENERICRESTREPLY_H
4 #include <QtCore/QObject>
6 #include <QtQml/QJSValue>
7 #include <QtQml/QJSEngine>
9 #include <QtJsonSerializer/SerializerBase>
11 #include <QtRestClient/RestReply>
27 class QmlGenericRestReply :
public QObject
50 Q_PROPERTY(
QString returnType READ returnType CONSTANT)
59 Q_PROPERTY(
QString errorType READ errorType CONSTANT)
63 Q_INVOKABLE QmlGenericRestReply(QtJsonSerializer::SerializerBase *serializer,
113 QtJsonSerializer::SerializerBase *_serializer;
119 bool checkOk(const
QJSValue &fn) const;
126 #endif // QTRESTCLIENT_QMLGENERICRESTREPLY_H
QtRestClient::RestReply reply
The original QtRestClient::RestReply that this one wrapps.
The Namespace containing all classes of the QtRestClient module.
The QML version of QtRestClient::RestReply.
void addErrorHandler(const QJSValue &errorHandler)
Add a method to be called if an error occured.
The QML import for the QtRestClient QML module.
void addFailedHandler(const QJSValue &failedHandler)
Add a method to be called if the request has failed.
void addSucceededHandler(const QJSValue &succeededHandler)
Add a method to be called when the request has been completed successfully.
void addCompletedHandler(const QJSValue &completedHandler)
Add a method to be called when the request has been completed.
The QML version of QtRestClient::GenericRestReply.