GetImageTranslate add column orc.
This commit is contained in:
@@ -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.
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ namespace AlibabaCloud
|
|||||||
public:
|
public:
|
||||||
struct Data
|
struct Data
|
||||||
{
|
{
|
||||||
|
std::string orc;
|
||||||
std::string url;
|
std::string url;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -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())
|
||||||
|
|||||||
Reference in New Issue
Block a user