$darkmode
Qore FileDataProvider Module Reference 1.0
FileGetResponseDataType.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
2 
25 namespace FileDataProvider {
27 class FileGetResponseDataType : public HashDataType {
28 
29 public:
30 protected:
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 
43 public:
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