Fixed CMakeLists file.

This commit is contained in:
sdk-team
2019-09-12 15:46:27 +08:00
parent 2fde71e2cc
commit a489a9d52e
7 changed files with 11 additions and 2 deletions

View File

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

View File

@@ -1 +1 @@
1.36.127
1.36.128

View File

@@ -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

View File

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

View File

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

View File

@@ -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())

View File

@@ -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())