1#ifndef RESTLINK_PATHPARAMETER_H
2#define RESTLINK_PATHPARAMETER_H
4#include <RestLink/global.h>
5#include <RestLink/parameter.h>
9class PathParameterData;
21 static PathParameter fromJsonObject(
const QJsonObject &
object);
25 {
return !operator==(other); }
Represents a generic parameter, which could be a path, query, or header parameter,...
Definition parameter.h:20
Definition pathparameter.h:11
PathParameter(PathParameter &&other)=default
PathParameter(const PathParameter &other)=default
bool operator!=(const PathParameter &other)
Definition pathparameter.h:24
Definition abstractrequesthandler.cpp:11
QList< PathParameter > PathParameterList
Definition pathparameter.h:33