Qore RestClientDataProvider Module Reference 1.1
Loading...
Searching...
No Matches
RestClientCallRequestDataType.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
2
25namespace RestClientDataProvider {
27class RestClientCallRequestDataType : 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 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