Generated 2020-05-18 for dataworks-public.
This commit is contained in:
@@ -40,6 +40,8 @@ public:
|
|||||||
void setTableGuid(const std::string &tableGuid);
|
void setTableGuid(const std::string &tableGuid);
|
||||||
int getPageSize() const;
|
int getPageSize() const;
|
||||||
void setPageSize(int pageSize);
|
void setPageSize(int pageSize);
|
||||||
|
std::string getTaskId() const;
|
||||||
|
void setTaskId(const std::string &taskId);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::string startDate_;
|
std::string startDate_;
|
||||||
@@ -47,6 +49,7 @@ private:
|
|||||||
std::string endDate_;
|
std::string endDate_;
|
||||||
std::string tableGuid_;
|
std::string tableGuid_;
|
||||||
int pageSize_;
|
int pageSize_;
|
||||||
|
std::string taskId_;
|
||||||
};
|
};
|
||||||
} // namespace Model
|
} // namespace Model
|
||||||
} // namespace Dataworks_public
|
} // namespace Dataworks_public
|
||||||
|
|||||||
@@ -70,3 +70,12 @@ void GetMetaTableOutputRequest::setPageSize(int pageSize) {
|
|||||||
setParameter(std::string("PageSize"), std::to_string(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);
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user