diff --git a/CHANGELOG b/CHANGELOG index dd29414f3..e60046e1a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +2022-07-13 Version: 1.36.1178 +- Automatically generate sdk tasks. + 2022-07-12 Version: 1.36.1177 - Automatically generate sdk tasks. diff --git a/VERSION b/VERSION index c6282416f..f0b04b6d1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.1177 \ No newline at end of file +1.36.1178 \ No newline at end of file diff --git a/wfts/include/alibabacloud/wfts/model/GetLjxAccountInfoResult.h b/wfts/include/alibabacloud/wfts/model/GetLjxAccountInfoResult.h index afcba65d8..2e8beba96 100644 --- a/wfts/include/alibabacloud/wfts/model/GetLjxAccountInfoResult.h +++ b/wfts/include/alibabacloud/wfts/model/GetLjxAccountInfoResult.h @@ -37,12 +37,14 @@ namespace AlibabaCloud GetLjxAccountInfoResult(); explicit GetLjxAccountInfoResult(const std::string &payload); ~GetLjxAccountInfoResult(); + std::string getApple()const; std::string getRequestId()const; std::string getLjxAccountInfoId()const; protected: void parse(const std::string &payload); private: + std::string apple_; std::string requestId_; std::string ljxAccountInfoId_; diff --git a/wfts/src/model/GetLjxAccountInfoResult.cc b/wfts/src/model/GetLjxAccountInfoResult.cc index cabf1e09e..6a3a03731 100644 --- a/wfts/src/model/GetLjxAccountInfoResult.cc +++ b/wfts/src/model/GetLjxAccountInfoResult.cc @@ -43,9 +43,16 @@ void GetLjxAccountInfoResult::parse(const std::string &payload) ljxAccountInfoId_ = value["LjxAccountInfoId"].asString(); if(!value["requestId"].isNull()) requestId_ = value["requestId"].asString(); + if(!value["Apple"].isNull()) + apple_ = value["Apple"].asString(); } +std::string GetLjxAccountInfoResult::getApple()const +{ + return apple_; +} + std::string GetLjxAccountInfoResult::getRequestId()const { return requestId_;