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