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

@@ -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);
}