Skip to content

Commit f2b24cc

Browse files
committed
Supported new features etc.
1 parent 848fed6 commit f2b24cc

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2022-06-24 Version: 1.36.1159
2+
- Supported new features etc.
3+
14
2022-06-24 Version: 1.36.1158
25
- Supported new features for outbound.
36

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.36.1158
1+
1.36.1159

voicenavigator/include/alibabacloud/voicenavigator/model/ListConversationsResult.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ namespace AlibabaCloud
3838
std::string skillGroup;
3939
std::string conversationId;
4040
bool hasLastPlaybackCompleted;
41+
std::string calledNumber;
4142
int endReason;
4243
long endTime;
4344
int rounds;

voicenavigator/src/model/ListConversationsResult.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ void ListConversationsResult::parse(const std::string &payload)
6363
conversationsObject.hasLastPlaybackCompleted = valueConversationsConversation["HasLastPlaybackCompleted"].asString() == "true";
6464
if(!valueConversationsConversation["SandBox"].isNull())
6565
conversationsObject.sandBox = valueConversationsConversation["SandBox"].asString() == "true";
66+
if(!valueConversationsConversation["CalledNumber"].isNull())
67+
conversationsObject.calledNumber = valueConversationsConversation["CalledNumber"].asString();
6668
conversations_.push_back(conversationsObject);
6769
}
6870
if(!value["TotalCount"].isNull())

0 commit comments

Comments
 (0)