Spring bot support MS Teams adaptive card update feature
Update the existing chat message sent by same app.
`
String chatMessageId = "YOUR_MESSAGE_ID";
UpdateChatMessageOptions updateOptions = new UpdateChatMessageOptions()
.setContent("This is the updated message content");
chatThreadClient.updateMessage(chatMessageId, updateOptions);
`
Spring bot support MS Teams adaptive card update feature
Update the existing chat message sent by same app.
`
String chatMessageId = "YOUR_MESSAGE_ID";
UpdateChatMessageOptions updateOptions = new UpdateChatMessageOptions()
.setContent("This is the updated message content");
chatThreadClient.updateMessage(chatMessageId, updateOptions);
`