Эх сурвалжийг харах

Generated 2020-05-18 for dataworks-public.

sdk-team 6 жил өмнө
parent
commit
4cda4f477d

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

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.507
+1.36.508

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

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