QtRestClient
3.0.0
A library for generic JSON-based REST-APIs, with a mechanism to map JSON to Qt objects
|
1 #ifndef QTRESTCLIENT_QMLRESTCLIENTGLOBAL_H
2 #define QTRESTCLIENT_QMLRESTCLIENTGLOBAL_H
4 #include <QtCore/QObject>
5 #include <QtRestClient/qtrestclient_global.h>
7 #include "qmlrestclass.h"
22 class QmlRestClientGlobal :
public QObject
63 #endif // QTRESTCLIENT_QMLRESTCLIENTGLOBAL_H
The QML version of QtRestClient::RestClient.
The Namespace containing all classes of the QtRestClient module.
Q_INVOKABLE void removeGlobalApi(const QString &name, bool deleteClient=true)
Removes a previously added API from the global list.
The QML import for the QtRestClient QML module.
Q_INVOKABLE RestClass * apiRootClass(const QString &name, QObject *parent=nullptr)
Returns the clients root class for the given API name.
The QML version of QtRestClient::RestClass.
Q_INVOKABLE RestClass * createApiClass(const QString &name, const QString &path, QObject *parent=nullptr)
Creates a new API class based on the client for the given API name.
Q_INVOKABLE Paging createPaging(QtRestClient::RestClient *client, const QVariantMap &data)
Creates a new QML Paging object for the given client from the given object.
Q_INVOKABLE QtRestClient::RestClient * apiClient(const QString &name)
Returns the client for given API name.
Q_INVOKABLE bool addGlobalApi(const QString &name, QtRestClient::RestClient *client)
Makes the given API available under the given name.
The QML version of QtRestClient::Paging.