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