Qore RestClientDataProvider Module Reference 1.1
Loading...
Searching...
No Matches
RestClientCallWithoutBodyRequestDataType.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
2
25namespace RestClientDataProvider {
27class RestClientCallWithoutBodyRequestDataType : public HashDataType {
28
29public:
30protected:
32 const Fields = {
33 "path": {
34 "type": StringType,
35 "desc": "The URI path",
36 },
37 "hdr": {
38 "type": AutoHashOrNothingType,
39 "desc": "Any headers to include in the request",
40 },
41 };
42
43public:
44
47
48};
49};
Data type for REST client call requests with no message bodies.
Definition: RestClientCallWithoutBodyRequestDataType.qc.dox.h:27
const Fields
Field descriptions.
Definition: RestClientCallWithoutBodyRequestDataType.qc.dox.h:32
Qore RestClientDataProvider module definition.
Definition: RestClientCallDataProvider.qc.dox.h:26