Generated 2020-05-18 for dataworks-public.

This commit is contained in:
sdk-team
2025-04-07 12:32:14 +00:00
parent 53d26e9957
commit 72138b276a
3 changed files with 13 additions and 1 deletions

View File

@@ -1 +1 @@
1.36.2057
1.36.2058

View File

@@ -36,6 +36,8 @@ public:
void setFileTypes(const std::string &fileTypes);
bool getNeedContent() const;
void setNeedContent(bool needContent);
int getCommitStatus() const;
void setCommitStatus(int commitStatus);
bool getNeedAbsoluteFolderPath() const;
void setNeedAbsoluteFolderPath(bool needAbsoluteFolderPath);
std::string getProjectIdentifier() const;
@@ -65,6 +67,7 @@ private:
std::string owner_;
std::string fileTypes_;
bool needContent_;
int commitStatus_;
bool needAbsoluteFolderPath_;
std::string projectIdentifier_;
int pageNumber_;

View File

@@ -52,6 +52,15 @@ void ListFilesRequest::setNeedContent(bool needContent) {
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 {
return needAbsoluteFolderPath_;
}