$darkmode
Qore HttpClientDataProvider Module Reference 1.1
HttpClientCallRequestDataType.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
2 
25 namespace HttpClientDataProvider {
27 class HttpClientCallRequestDataType : 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 HTTP call requests.
Definition: HttpClientCallRequestDataType.qc.dox.h:27
const Fields
Field descriptions.
Definition: HttpClientCallRequestDataType.qc.dox.h:32
Qore HttpClientDataProvider module definition.
Definition: HttpClientCallDataProvider.qc.dox.h:26