GetImageTranslate add column orc.

This commit is contained in:
sdk-team
2020-08-13 16:00:15 +08:00
parent 314c523174
commit 83f2c53623
4 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
2020-08-13 Version: 1.36.576
- GetImageTranslate add column orc.
2020-08-13 Version: 1.36.575 2020-08-13 Version: 1.36.575
- DescribePrice update amount parameters type, float to string. - DescribePrice update amount parameters type, float to string.
- Add ResourceGroupId parameter to support resource group. - Add ResourceGroupId parameter to support resource group.

View File

@@ -1 +1 @@
1.36.575 1.36.576

View File

@@ -34,6 +34,7 @@ namespace AlibabaCloud
public: public:
struct Data struct Data
{ {
std::string orc;
std::string url; std::string url;
}; };

View File

@@ -42,6 +42,8 @@ void GetImageTranslateResult::parse(const std::string &payload)
auto dataNode = value["Data"]; auto dataNode = value["Data"];
if(!dataNode["Url"].isNull()) if(!dataNode["Url"].isNull())
data_.url = dataNode["Url"].asString(); data_.url = dataNode["Url"].asString();
if(!dataNode["Orc"].isNull())
data_.orc = dataNode["Orc"].asString();
if(!value["Code"].isNull()) if(!value["Code"].isNull())
code_ = std::stoi(value["Code"].asString()); code_ = std::stoi(value["Code"].asString());
if(!value["Message"].isNull()) if(!value["Message"].isNull())