$darkmode
Qore RestClientDataProvider Module Reference 1.1
RestClientCallWithoutBodyRequestDataType.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
2 
25 namespace RestClientDataProvider {
27 class RestClientCallWithoutBodyRequestDataType : public HashDataType {
28 
29 public:
30 protected:
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 
43 public:
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