Qore HttpClientDataProvider Module Reference 1.1
Loading...
Searching...
No Matches
HttpClientCallRequestDataType.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
2
25namespace HttpClientDataProvider {
27class HttpClientCallRequestDataType : public HashDataType {
28
29public:
30protected:
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
47public:
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