QtRestClient  3.0.0
A library for generic JSON-based REST-APIs, with a mechanism to map JSON to Qt objects
Public Slots | Properties | List of all members
de::skycoder42::QtRestClient::GenericRestReply Class Reference

The QML version of QtRestClient::GenericRestReply. More...

#include <qmlgenericrestreply.h>

+ Inheritance diagram for de::skycoder42::QtRestClient::GenericRestReply:

Public Slots

void addCompletedHandler (const QJSValue &completedHandler)
 Add a method to be called when the request has been completed. More...
 
void addSucceededHandler (const QJSValue &succeededHandler)
 Add a method to be called when the request has been completed successfully. More...
 
void addFailedHandler (const QJSValue &failedHandler)
 Add a method to be called if the request has failed. More...
 
void addErrorHandler (const QJSValue &errorHandler)
 Add a method to be called if an error occured. More...
 

Properties

QtRestClient::RestReply reply
 The original QtRestClient::RestReply that this one wrapps. More...
 
QString returnType
 The primary reply type returned by this request. More...
 
QString errorType
 The error reply type returned by this request. More...
 

Detailed Description

The QML version of QtRestClient::GenericRestReply.

Since
2.0

This is a special version that is only used by classes generated by qrestbuilder

Definition at line 23 of file qmlgenericrestreply.h.

Member Function Documentation

◆ addCompletedHandler

void de::skycoder42::QtRestClient::GenericRestReply::addCompletedHandler ( const QJSValue completedHandler)
slot

Add a method to be called when the request has been completed.

Parameters
completedHandlera JS callback to be called with the reply

The handlers arguments are:

  • The HTTP-Status code (int)

◆ addErrorHandler

void de::skycoder42::QtRestClient::GenericRestReply::addErrorHandler ( const QJSValue errorHandler)
slot

Add a method to be called if an error occured.

Parameters
errorHandlera JS callback to be called with the reply

The handlers arguments are:

◆ addFailedHandler

void de::skycoder42::QtRestClient::GenericRestReply::addFailedHandler ( const QJSValue failedHandler)
slot

Add a method to be called if the request has failed.

Parameters
failedHandlera JS callback to be called with the reply

The handlers arguments are:

  • The HTTP-Status code (int)
  • The deserialized Content of the reply (errorType)

◆ addSucceededHandler

void de::skycoder42::QtRestClient::GenericRestReply::addSucceededHandler ( const QJSValue succeededHandler)
slot

Add a method to be called when the request has been completed successfully.

Parameters
succeededHandlera JS callback to be called with the reply

The handlers arguments are:

  • The HTTP-Status code (int)
  • The deserialized Content of the reply (returnType)

Property Documentation

◆ errorType

QString de::skycoder42::QtRestClient::GenericRestReply::errorType
read

The error reply type returned by this request.

Default: auto

Accessors
MEMBERerrorType
READ ONLY

Definition at line 59 of file qmlgenericrestreply.h.

◆ reply

QtRestClient::RestReply de::skycoder42::QtRestClient::GenericRestReply::reply

The original QtRestClient::RestReply that this one wrapps.

Default: auto

Accessors
MEMBERreply
READ ONLY
See also
QtRestClient::RestReply

Definition at line 41 of file qmlgenericrestreply.h.

◆ returnType

QString de::skycoder42::QtRestClient::GenericRestReply::returnType
read

The primary reply type returned by this request.

Default: auto

Accessors
MEMBERreturnType
READ ONLY

Definition at line 50 of file qmlgenericrestreply.h.


The documentation for this class was generated from the following file: