Fixed CMakeLists file.
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
2019-09-12 Version 1.36.128
|
||||
- Fixed CMakeLists file.
|
||||
|
||||
2019-09-12 Version 1.36.127
|
||||
- Fixed CMakeLists 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
|
||||
|
||||
@@ -35,6 +35,7 @@ namespace AlibabaCloud
|
||||
struct Feedback
|
||||
{
|
||||
std::string action;
|
||||
bool interruptible;
|
||||
std::string content;
|
||||
std::string actionParams;
|
||||
};
|
||||
|
||||
@@ -36,6 +36,7 @@ namespace AlibabaCloud
|
||||
{
|
||||
std::string jobGroupId;
|
||||
std::string userPhone;
|
||||
std::string caller;
|
||||
std::string contactReferrnceId;
|
||||
};
|
||||
|
||||
|
||||
@@ -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())
|
||||
|
||||
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user