Add value, values, startValue, endValue in ExportModelFeatureTrainingSetTable.

This commit is contained in:
sdk-team
2023-09-13 09:54:04 +00:00
parent e788fcb800
commit 197159f97b
3 changed files with 10 additions and 1 deletions

View File

@@ -1 +1 @@
1.36.1757
1.36.1758

View File

@@ -37,10 +37,12 @@ namespace AlibabaCloud
ExportModelFeatureTrainingSetTableResult();
explicit ExportModelFeatureTrainingSetTableResult(const std::string &payload);
~ExportModelFeatureTrainingSetTableResult();
std::string getTaskId()const;
protected:
void parse(const std::string &payload);
private:
std::string taskId_;
};
}

View File

@@ -39,6 +39,13 @@ void ExportModelFeatureTrainingSetTableResult::parse(const std::string &payload)
Json::Value value;
reader.parse(payload, value);
setRequestId(value["RequestId"].asString());
if(!value["TaskId"].isNull())
taskId_ = value["TaskId"].asString();
}
std::string ExportModelFeatureTrainingSetTableResult::getTaskId()const
{
return taskId_;
}