QtRestClient
3.0.0
A library for generic JSON-based REST-APIs, with a mechanism to map JSON to Qt objects
|
The QML version of QtRestClient::RestClass. More...
#include <qmlrestclass.h>
Signals | |
void | restClassChanged (QtRestClient::RestClass *restClass) |
NOTIFY accessor for RestClass::restClass. | |
void | pathChanged (QString path) |
NOTIFY accessor for RestClass::path. | |
Public Member Functions | |
QmlRestClass (QObject *parent=nullptr) | |
Default constructor with object parent. | |
Q_INVOKABLE QtRestClient::QmlRestReply * | call (const QString &verb, QJSValue optPath={}, QJSValue optBody={}, QJSValue optParams={}, QJSValue optAsPost={}, QJSValue optHeaders={}) |
Perform a HTTP-Request call on this class. More... | |
Q_INVOKABLE QtRestClient::QmlRestReply * | get (QJSValue optPath={}, QJSValue optParams={}, QJSValue optHeaders={}) |
Perform a HTTP-GET-Request on this class. More... | |
Q_INVOKABLE QtRestClient::QmlRestReply * | post (QJSValue optPath={}, QJSValue optBodyParams={}, QJSValue optParams={}, QJSValue optHeaders={}) |
Perform a HTTP-POST-Request on this class. More... | |
Q_INVOKABLE QtRestClient::QmlRestReply * | put (QJSValue optPathOrBody, QJSValue body={}, QJSValue optParams={}, QJSValue optHeaders={}) |
Perform a HTTP-PUT-Request on this class. More... | |
Q_INVOKABLE QtRestClient::QmlRestReply * | deleteResource (QJSValue optPath={}, QJSValue optParams={}, QJSValue optHeaders={}) |
Perform a HTTP-DELETE-Request on this class. More... | |
Q_INVOKABLE QtRestClient::QmlRestReply * | patch (QJSValue optPathOrBody, QJSValue body={}, QJSValue optParams={}, QJSValue optHeaders={}) |
Perform a HTTP-PATCH-Request on this class. More... | |
Q_INVOKABLE QtRestClient::QmlRestReply * | head (QJSValue optPath={}, QJSValue optParams={}, QJSValue optHeaders={}) |
Perform a HTTP-HEAD-Request on this class. More... | |
Properties | |
QtRestClient::RestClass | restClass |
The QtRestClient::RestClass made available via the QML variant. More... | |
QString | path |
The subpath to the parent class/api this class adds. More... | |
QQmlListProperty< de::skycoder42::QtRestClient::RestClass > | classes |
A helper property to declare RestClasses for the class as subclasses. More... | |
Q_INVOKABLE QtRestClient::QmlRestReply* de::skycoder42::QtRestClient::RestClass::call | ( | const QString & | verb, |
QJSValue | optPath = {} , |
||
QJSValue | optBody = {} , |
||
QJSValue | optParams = {} , |
||
QJSValue | optAsPost = {} , |
||
QJSValue | optHeaders = {} |
||
) |
Perform a HTTP-Request call on this class.
verb | The HTTP-Verb to be used |
optPath | Optional and variable parameter |
optBody | Optional and variable parameter |
optParams | Optional and variable parameter |
optAsPost | Optional and variable parameter |
optHeaders | Optional and variable parameter |
The method parameters are declared as var to be able to provide advance syntax. They are all placeholders for different types and can be used with the following syntax. They can be explicitly skipped by using undefined
as value. (the format is <name>:<type>[|<type>...]
for every possible param):
Q_INVOKABLE QtRestClient::QmlRestReply* de::skycoder42::QtRestClient::RestClass::deleteResource | ( | QJSValue | optPath = {} , |
QJSValue | optParams = {} , |
||
QJSValue | optHeaders = {} |
||
) |
Perform a HTTP-DELETE-Request on this class.
optPath | Optional and variable parameter |
optParams | Optional and variable parameter |
optHeaders | Optional and variable parameter |
The method parameters are declared as var to be able to provide advance syntax. They are all placeholders for different types and can be used with the following syntax. They can be explicitly skipped by using undefined
as value. (the format is <name>:<type>[|<type>...]
for every possible param):
Q_INVOKABLE QtRestClient::QmlRestReply* de::skycoder42::QtRestClient::RestClass::get | ( | QJSValue | optPath = {} , |
QJSValue | optParams = {} , |
||
QJSValue | optHeaders = {} |
||
) |
Perform a HTTP-GET-Request on this class.
optPath | Optional and variable parameter |
optParams | Optional and variable parameter |
optHeaders | Optional and variable parameter |
The method parameters are declared as var to be able to provide advance syntax. They are all placeholders for different types and can be used with the following syntax. They can be explicitly skipped by using undefined
as value. (the format is <name>:<type>[|<type>...]
for every possible param):
Q_INVOKABLE QtRestClient::QmlRestReply* de::skycoder42::QtRestClient::RestClass::head | ( | QJSValue | optPath = {} , |
QJSValue | optParams = {} , |
||
QJSValue | optHeaders = {} |
||
) |
Perform a HTTP-HEAD-Request on this class.
optPath | Optional and variable parameter |
optParams | Optional and variable parameter |
optHeaders | Optional and variable parameter |
The method parameters are declared as var to be able to provide advance syntax. They are all placeholders for different types and can be used with the following syntax. They can be explicitly skipped by using undefined
as value. (the format is <name>:<type>[|<type>...]
for every possible param):
Q_INVOKABLE QtRestClient::QmlRestReply* de::skycoder42::QtRestClient::RestClass::patch | ( | QJSValue | optPathOrBody, |
QJSValue | body = {} , |
||
QJSValue | optParams = {} , |
||
QJSValue | optHeaders = {} |
||
) |
Perform a HTTP-PATCH-Request on this class.
optPathOrBody | Optional and variable parameter |
body | The data body of the HTTP-Request, sent as json (can be object or array ) |
optParams | Optional and variable parameter |
optHeaders | Optional and variable parameter |
The method parameters are declared as var to be able to provide advance syntax. They are all placeholders for different types and can be used with the following syntax. They can be explicitly skipped by using undefined
as value. (the format is <name>:<type>[|<type>...]
for every possible param):
Q_INVOKABLE QtRestClient::QmlRestReply* de::skycoder42::QtRestClient::RestClass::post | ( | QJSValue | optPath = {} , |
QJSValue | optBodyParams = {} , |
||
QJSValue | optParams = {} , |
||
QJSValue | optHeaders = {} |
||
) |
Perform a HTTP-POST-Request on this class.
optPath | Optional and variable parameter |
optBodyParams | Optional and variable parameter |
optParams | Optional and variable parameter |
optHeaders | Optional and variable parameter |
The method parameters are declared as var to be able to provide advance syntax. They are all placeholders for different types and can be used with the following syntax. They can be explicitly skipped by using undefined
as value. (the format is <name>:<type>[|<type>...]
for every possible param):
Q_INVOKABLE QtRestClient::QmlRestReply* de::skycoder42::QtRestClient::RestClass::put | ( | QJSValue | optPathOrBody, |
QJSValue | body = {} , |
||
QJSValue | optParams = {} , |
||
QJSValue | optHeaders = {} |
||
) |
Perform a HTTP-PUT-Request on this class.
optPathOrBody | Optional and variable parameter |
body | The data body of the HTTP-Request, sent as json (can be object or array ) |
optParams | Optional and variable parameter |
optHeaders | Optional and variable parameter |
The method parameters are declared as var to be able to provide advance syntax. They are all placeholders for different types and can be used with the following syntax. They can be explicitly skipped by using undefined
as value. (the format is <name>:<type>[|<type>...]
for every possible param):
|
read |
A helper property to declare RestClasses for the class as subclasses.
Default: empty
Accessors | |
---|---|
MEMBER | classes |
Definition at line 60 of file qmlrestclass.h.
|
readwrite |
The subpath to the parent class/api this class adds.
Default: empty
Accessors | |
---|---|
MEMBER | path |
NOTIFY | pathChanged() |
Definition at line 51 of file qmlrestclass.h.
|
read |
The QtRestClient::RestClass made available via the QML variant.
Default: auto
Accessors | |
---|---|
MEMBER | restClass |
MEMBER | restClassChanged |
Definition at line 42 of file qmlrestclass.h.