Qore FileDataProvider Module Reference  1.0
FileCreateRequestDataType.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
2 
25 namespace FileDataProvider {
27 class FileCreateRequestDataType : public HashDataType {
28 
29 public:
30 protected:
32  const Fields = {
33  "data": {
34  "type": DataType,
35  "desc": "The string or binary data for the file",
36  },
37  "mode": {
38  "type": IntType,
39  "desc": "The mode for the new file (default `0664`)",
40  "default_value": 0644,
41  },
42  "path": {
43  "type": StringType,
44  "desc": "The file path",
45  },
46  };
47 
48 public:
49 
52 
53 };
54 };
Data type for create file request calls.
Definition: FileCreateRequestDataType.qc.dox.h:27
const Fields
Field descriptions.
Definition: FileCreateRequestDataType.qc.dox.h:32
Qore FileDataProvider module definition.
Definition: FileCopyDataProvider.qc.dox.h:26