From 4cda4f477d32e13d64a68bd6da61e842369b1924 Mon Sep 17 00:00:00 2001 From: sdk-team Date: Wed, 8 Jul 2020 17:40:37 +0800 Subject: [PATCH] Generated 2020-05-18 for dataworks-public. --- CHANGELOG | 3 +++ VERSION | 2 +- .../dataworks-public/model/DeleteQualityEntityResult.h | 4 ++-- dataworks-public/src/model/DeleteQualityEntityResult.cc | 4 ++-- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 9282942ef..6732a6b2b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +2020-07-08 Version: 1.36.508 +- Generated 2020-05-18 for `dataworks-public`. + 2020-07-08 Version: 1.36.507 - Add video compose api. diff --git a/VERSION b/VERSION index 317eba407..00293c49f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.507 \ No newline at end of file +1.36.508 \ No newline at end of file diff --git a/dataworks-public/include/alibabacloud/dataworks-public/model/DeleteQualityEntityResult.h b/dataworks-public/include/alibabacloud/dataworks-public/model/DeleteQualityEntityResult.h index bc4db96a1..f0a00865a 100644 --- a/dataworks-public/include/alibabacloud/dataworks-public/model/DeleteQualityEntityResult.h +++ b/dataworks-public/include/alibabacloud/dataworks-public/model/DeleteQualityEntityResult.h @@ -39,7 +39,7 @@ namespace AlibabaCloud ~DeleteQualityEntityResult(); int getHttpStatusCode()const; bool getData()const; - bool getErrorCode()const; + std::string getErrorCode()const; std::string getErrorMessage()const; bool getSuccess()const; @@ -48,7 +48,7 @@ namespace AlibabaCloud private: int httpStatusCode_; bool data_; - bool errorCode_; + std::string errorCode_; std::string errorMessage_; bool success_; diff --git a/dataworks-public/src/model/DeleteQualityEntityResult.cc b/dataworks-public/src/model/DeleteQualityEntityResult.cc index 7d71c4beb..4fb61fb09 100644 --- a/dataworks-public/src/model/DeleteQualityEntityResult.cc +++ b/dataworks-public/src/model/DeleteQualityEntityResult.cc @@ -42,7 +42,7 @@ void DeleteQualityEntityResult::parse(const std::string &payload) if(!value["Success"].isNull()) success_ = value["Success"].asString() == "true"; if(!value["ErrorCode"].isNull()) - errorCode_ = value["ErrorCode"].asString() == "true"; + errorCode_ = value["ErrorCode"].asString(); if(!value["ErrorMessage"].isNull()) errorMessage_ = value["ErrorMessage"].asString(); if(!value["HttpStatusCode"].isNull()) @@ -62,7 +62,7 @@ bool DeleteQualityEntityResult::getData()const return data_; } -bool DeleteQualityEntityResult::getErrorCode()const +std::string DeleteQualityEntityResult::getErrorCode()const { return errorCode_; }