Automatically generate sdk tasks.

This commit is contained in:
sdk-team
2022-07-13 06:55:42 +00:00
parent e915fe10cd
commit 6f08307187
4 changed files with 13 additions and 1 deletions

View File

@@ -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.

View File

@@ -1 +1 @@
1.36.1177
1.36.1178

View File

@@ -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_;

View File

@@ -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_;