Procházet zdrojové kódy

Automatically generate sdk tasks.

sdk-team před 4 roky
rodič
revize
6f08307187

+ 3 - 0
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.
 

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.1177
+1.36.1178

+ 2 - 0
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_;
 

+ 7 - 0
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_;