Add value, values, startValue, endValue in ExportModelFeatureTrainingSetTable.
This commit is contained in:
@@ -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_;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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_;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user