From a489a9d52ec01b67fc3d72aba2937d9bd34b5d83 Mon Sep 17 00:00:00 2001 From: sdk-team Date: Thu, 12 Sep 2019 15:46:27 +0800 Subject: [PATCH] Fixed CMakeLists file. --- CHANGELOG | 3 +++ VERSION | 2 +- ccc/CMakeLists.txt | 2 +- ccc/include/alibabacloud/ccc/model/DialogueResult.h | 1 + .../ccc/model/GetContactInfoByOutboundTaskIdResult.h | 1 + ccc/src/model/DialogueResult.cc | 2 ++ ccc/src/model/GetContactInfoByOutboundTaskIdResult.cc | 2 ++ 7 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 1e384fc3a..1e50a65de 100644 --- a/CHANGELOG +++ b/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. diff --git a/VERSION b/VERSION index c6771703e..e5897df88 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.36.127 \ No newline at end of file +1.36.128 \ No newline at end of file diff --git a/ccc/CMakeLists.txt b/ccc/CMakeLists.txt index 202a46386..33403706f 100644 --- a/ccc/CMakeLists.txt +++ b/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 diff --git a/ccc/include/alibabacloud/ccc/model/DialogueResult.h b/ccc/include/alibabacloud/ccc/model/DialogueResult.h index be088cd22..d88e02600 100644 --- a/ccc/include/alibabacloud/ccc/model/DialogueResult.h +++ b/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; }; diff --git a/ccc/include/alibabacloud/ccc/model/GetContactInfoByOutboundTaskIdResult.h b/ccc/include/alibabacloud/ccc/model/GetContactInfoByOutboundTaskIdResult.h index 49f901766..ee5f321ae 100644 --- a/ccc/include/alibabacloud/ccc/model/GetContactInfoByOutboundTaskIdResult.h +++ b/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; }; diff --git a/ccc/src/model/DialogueResult.cc b/ccc/src/model/DialogueResult.cc index 203386ef3..6260b2959 100644 --- a/ccc/src/model/DialogueResult.cc +++ b/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()) diff --git a/ccc/src/model/GetContactInfoByOutboundTaskIdResult.cc b/ccc/src/model/GetContactInfoByOutboundTaskIdResult.cc index e01df70d9..9947f6beb 100644 --- a/ccc/src/model/GetContactInfoByOutboundTaskIdResult.cc +++ b/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())