Supported new features etc.

This commit is contained in:
sdk-team
2022-06-24 03:07:35 +00:00
parent 848fed61b7
commit f2b24cc869
4 changed files with 7 additions and 1 deletions

View File

@@ -38,6 +38,7 @@ namespace AlibabaCloud
std::string skillGroup;
std::string conversationId;
bool hasLastPlaybackCompleted;
std::string calledNumber;
int endReason;
long endTime;
int rounds;

View File

@@ -63,6 +63,8 @@ void ListConversationsResult::parse(const std::string &payload)
conversationsObject.hasLastPlaybackCompleted = valueConversationsConversation["HasLastPlaybackCompleted"].asString() == "true";
if(!valueConversationsConversation["SandBox"].isNull())
conversationsObject.sandBox = valueConversationsConversation["SandBox"].asString() == "true";
if(!valueConversationsConversation["CalledNumber"].isNull())
conversationsObject.calledNumber = valueConversationsConversation["CalledNumber"].asString();
conversations_.push_back(conversationsObject);
}
if(!value["TotalCount"].isNull())