Generated 2020-05-18 for dataworks-public.
This commit is contained in:
@@ -36,6 +36,8 @@ public:
|
|||||||
void setFileTypes(const std::string &fileTypes);
|
void setFileTypes(const std::string &fileTypes);
|
||||||
bool getNeedContent() const;
|
bool getNeedContent() const;
|
||||||
void setNeedContent(bool needContent);
|
void setNeedContent(bool needContent);
|
||||||
|
int getCommitStatus() const;
|
||||||
|
void setCommitStatus(int commitStatus);
|
||||||
bool getNeedAbsoluteFolderPath() const;
|
bool getNeedAbsoluteFolderPath() const;
|
||||||
void setNeedAbsoluteFolderPath(bool needAbsoluteFolderPath);
|
void setNeedAbsoluteFolderPath(bool needAbsoluteFolderPath);
|
||||||
std::string getProjectIdentifier() const;
|
std::string getProjectIdentifier() const;
|
||||||
@@ -65,6 +67,7 @@ private:
|
|||||||
std::string owner_;
|
std::string owner_;
|
||||||
std::string fileTypes_;
|
std::string fileTypes_;
|
||||||
bool needContent_;
|
bool needContent_;
|
||||||
|
int commitStatus_;
|
||||||
bool needAbsoluteFolderPath_;
|
bool needAbsoluteFolderPath_;
|
||||||
std::string projectIdentifier_;
|
std::string projectIdentifier_;
|
||||||
int pageNumber_;
|
int pageNumber_;
|
||||||
|
|||||||
@@ -52,6 +52,15 @@ void ListFilesRequest::setNeedContent(bool needContent) {
|
|||||||
setBodyParameter(std::string("NeedContent"), needContent ? "true" : "false");
|
setBodyParameter(std::string("NeedContent"), needContent ? "true" : "false");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int ListFilesRequest::getCommitStatus() const {
|
||||||
|
return commitStatus_;
|
||||||
|
}
|
||||||
|
|
||||||
|
void ListFilesRequest::setCommitStatus(int commitStatus) {
|
||||||
|
commitStatus_ = commitStatus;
|
||||||
|
setBodyParameter(std::string("CommitStatus"), std::to_string(commitStatus));
|
||||||
|
}
|
||||||
|
|
||||||
bool ListFilesRequest::getNeedAbsoluteFolderPath() const {
|
bool ListFilesRequest::getNeedAbsoluteFolderPath() const {
|
||||||
return needAbsoluteFolderPath_;
|
return needAbsoluteFolderPath_;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user