Qore FtpClientDataProvider Module Reference 1.0
Loading...
Searching...
No Matches
FtpClientGetFileResponseDataType.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
2
25namespace FtpClientDataProvider {
27class FtpClientGetFileResponseDataType : public HashDataType {
28
29public:
30protected:
32 const Fields = {
33 "path": {
34 "type": StringType,
35 "desc": "The ftp 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 FTP client get file request calls.
Definition: FtpClientGetFileResponseDataType.qc.dox.h:27
const Fields
Field descriptions.
Definition: FtpClientGetFileResponseDataType.qc.dox.h:32
Qore FtpClientDataProvider module definition.
Definition: FtpClientCreateFileDataProvider.qc.dox.h:26