Browse Source

Fixed CMakeLists file.

sdk-team 7 years ago
parent
commit
a489a9d52e

+ 3 - 0
CHANGELOG

@@ -1,3 +1,6 @@
+2019-09-12 Version 1.36.128
+- Fixed CMakeLists file.
+
 2019-09-12 Version 1.36.127
 - Fixed CMakeLists file.
 

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.127
+1.36.128

+ 1 - 1
ccc/CMakeLists.txt

@@ -343,7 +343,7 @@ set(ccc_public_header_model
 	include/alibabacloud/ccc/model/DeleteJobGroupResult.h )
 
 set(ccc_src 
-	src/com.aliyun.pop.sdk.domain.Product@7b78ed6aClient.cc
+	src/CCCClient.cc
 	src/model/SaveWebRTCStatsRequest.cc
 	src/model/SaveWebRTCStatsResult.cc
 	src/model/GetContactIdentifyByOutBoundTaskIdRequest.cc

+ 1 - 0
ccc/include/alibabacloud/ccc/model/DialogueResult.h

@@ -35,6 +35,7 @@ namespace AlibabaCloud
 				struct Feedback
 				{
 					std::string action;
+					bool interruptible;
 					std::string content;
 					std::string actionParams;
 				};

+ 1 - 0
ccc/include/alibabacloud/ccc/model/GetContactInfoByOutboundTaskIdResult.h

@@ -36,6 +36,7 @@ namespace AlibabaCloud
 				{
 					std::string jobGroupId;
 					std::string userPhone;
+					std::string caller;
 					std::string contactReferrnceId;
 				};
 

+ 2 - 0
ccc/src/model/DialogueResult.cc

@@ -46,6 +46,8 @@ void DialogueResult::parse(const std::string &payload)
 		feedback_.action = feedbackNode["Action"].asString();
 	if(!feedbackNode["ActionParams"].isNull())
 		feedback_.actionParams = feedbackNode["ActionParams"].asString();
+	if(!feedbackNode["Interruptible"].isNull())
+		feedback_.interruptible = feedbackNode["Interruptible"].asString() == "true";
 	if(!value["Success"].isNull())
 		success_ = value["Success"].asString() == "true";
 	if(!value["Code"].isNull())

+ 2 - 0
ccc/src/model/GetContactInfoByOutboundTaskIdResult.cc

@@ -46,6 +46,8 @@ void GetContactInfoByOutboundTaskIdResult::parse(const std::string &payload)
 		contactIdentity_.jobGroupId = contactIdentityNode["JobGroupId"].asString();
 	if(!contactIdentityNode["UserPhone"].isNull())
 		contactIdentity_.userPhone = contactIdentityNode["UserPhone"].asString();
+	if(!contactIdentityNode["Caller"].isNull())
+		contactIdentity_.caller = contactIdentityNode["Caller"].asString();
 	if(!value["Success"].isNull())
 		success_ = value["Success"].asString() == "true";
 	if(!value["Code"].isNull())