Skip to content

Commit 197159f

Browse files
committed
Add value, values, startValue, endValue in ExportModelFeatureTrainingSetTable.
1 parent e788fcb commit 197159f

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.36.1757
1+
1.36.1758

paifeaturestore/include/alibabacloud/paifeaturestore/model/ExportModelFeatureTrainingSetTableResult.h

+2
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,12 @@ namespace AlibabaCloud
3737
ExportModelFeatureTrainingSetTableResult();
3838
explicit ExportModelFeatureTrainingSetTableResult(const std::string &payload);
3939
~ExportModelFeatureTrainingSetTableResult();
40+
std::string getTaskId()const;
4041

4142
protected:
4243
void parse(const std::string &payload);
4344
private:
45+
std::string taskId_;
4446

4547
};
4648
}

paifeaturestore/src/model/ExportModelFeatureTrainingSetTableResult.cc

+7
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ void ExportModelFeatureTrainingSetTableResult::parse(const std::string &payload)
3939
Json::Value value;
4040
reader.parse(payload, value);
4141
setRequestId(value["RequestId"].asString());
42+
if(!value["TaskId"].isNull())
43+
taskId_ = value["TaskId"].asString();
4244

4345
}
4446

47+
std::string ExportModelFeatureTrainingSetTableResult::getTaskId()const
48+
{
49+
return taskId_;
50+
}
51+

0 commit comments

Comments
 (0)