Qore FileDataProvider Module Reference 1.0
Loading...
Searching...
No Matches
FileGetResponseDataType.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
2
25namespace FileDataProvider {
27class FileGetResponseDataType : public HashDataType {
28
29public:
30protected:
32 const Fields = {
33 "path": {
34 "type": StringType,
35 "desc": "The file path",
36 },
37 "data": {
38 "type": DataType,
39 "desc": "The string or binary data for the file",
40 }
41 };
42
43public:
44
47
48};
49};
Data type for FILE get file request calls.
Definition: FileGetResponseDataType.qc.dox.h:27
const Fields
Field descriptions.
Definition: FileGetResponseDataType.qc.dox.h:32
Qore FileDataProvider module definition.
Definition: FileCopyDataProvider.qc.dox.h:26