Ver Fonte

Supported new features etc.

sdk-team há 4 anos atrás
pai
commit
f2b24cc869

+ 3 - 0
CHANGELOG

@@ -1,3 +1,6 @@
+2022-06-24 Version: 1.36.1159
+- Supported new features etc.
+
 2022-06-24 Version: 1.36.1158
 - Supported new features for outbound.
 

+ 1 - 1
VERSION

@@ -1 +1 @@
-1.36.1158
+1.36.1159

+ 1 - 0
voicenavigator/include/alibabacloud/voicenavigator/model/ListConversationsResult.h

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

+ 2 - 0
voicenavigator/src/model/ListConversationsResult.cc

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