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