diff --git a/VERSION b/VERSION index 8679941e7..f53be8e1a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.1809 \ No newline at end of file +1.36.1810 \ No newline at end of file diff --git a/paifeaturestore/include/alibabacloud/paifeaturestore/model/GetLabelTableResult.h b/paifeaturestore/include/alibabacloud/paifeaturestore/model/GetLabelTableResult.h index e46ac15ef..2557c530c 100644 --- a/paifeaturestore/include/alibabacloud/paifeaturestore/model/GetLabelTableResult.h +++ b/paifeaturestore/include/alibabacloud/paifeaturestore/model/GetLabelTableResult.h @@ -43,6 +43,7 @@ namespace AlibabaCloud GetLabelTableResult(); explicit GetLabelTableResult(const std::string &payload); ~GetLabelTableResult(); + std::vector getRelatedModelFeatures()const; std::string getOwner()const; std::vector getFields()const; std::string getDatasourceId()const; @@ -56,6 +57,7 @@ namespace AlibabaCloud protected: void parse(const std::string &payload); private: + std::vector relatedModelFeatures_; std::string owner_; std::vector fields_; std::string datasourceId_; diff --git a/paifeaturestore/src/model/GetLabelTableResult.cc b/paifeaturestore/src/model/GetLabelTableResult.cc index 05947b4b4..a50b38cf4 100644 --- a/paifeaturestore/src/model/GetLabelTableResult.cc +++ b/paifeaturestore/src/model/GetLabelTableResult.cc @@ -52,6 +52,9 @@ void GetLabelTableResult::parse(const std::string &payload) fieldsObject.attributes.push_back(value.asString()); fields_.push_back(fieldsObject); } + auto allRelatedModelFeatures = value["RelatedModelFeatures"]["RelatedModelFeatures"]; + for (const auto &item : allRelatedModelFeatures) + relatedModelFeatures_.push_back(item.asString()); if(!value["ProjectId"].isNull()) projectId_ = value["ProjectId"].asString(); if(!value["ProjectName"].isNull()) @@ -71,6 +74,11 @@ void GetLabelTableResult::parse(const std::string &payload) } +std::vector GetLabelTableResult::getRelatedModelFeatures()const +{ + return relatedModelFeatures_; +} + std::string GetLabelTableResult::getOwner()const { return owner_;