Generated 2020-05-18 for dataworks-public.

This commit is contained in:
sdk-team
2022-12-16 03:07:21 +00:00
parent 1e31c73a54
commit cfec2a4f73
3 changed files with 13 additions and 1 deletions

View File

@@ -1 +1 @@
1.36.1391
1.36.1392

View File

@@ -40,6 +40,8 @@ public:
void setTableGuid(const std::string &tableGuid);
int getPageSize() const;
void setPageSize(int pageSize);
std::string getTaskId() const;
void setTaskId(const std::string &taskId);
private:
std::string startDate_;
@@ -47,6 +49,7 @@ private:
std::string endDate_;
std::string tableGuid_;
int pageSize_;
std::string taskId_;
};
} // namespace Model
} // namespace Dataworks_public

View File

@@ -70,3 +70,12 @@ void GetMetaTableOutputRequest::setPageSize(int pageSize) {
setParameter(std::string("PageSize"), std::to_string(pageSize));
}
std::string GetMetaTableOutputRequest::getTaskId() const {
return taskId_;
}
void GetMetaTableOutputRequest::setTaskId(const std::string &taskId) {
taskId_ = taskId;
setParameter(std::string("TaskId"), taskId);
}