microsoft/teams.net

Public

mirrored from https://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/move-activity-implementations

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Tests/Microsoft.Teams.Api.Tests/Json/Activity/Message/MessageActivity_Mention.json

31lines · modecode

1{
2 "id": "1",
3 "type": "message",
4 "channelId": "msteams",
5 "text": "<at>test-bot</at> testing123",
6 "from": {
7 "id": "1",
8 "role": "user",
9 "name": "test"
10 },
11 "recipient": {
12 "id": "2",
13 "role": "bot",
14 "name": "test-bot"
15 },
16 "conversation": {
17 "id": "1",
18 "conversationType": "personal"
19 },
20 "entities": [
21 {
22 "type": "mention",
23 "mentioned": {
24 "id": "2",
25 "role": "bot",
26 "name": "test-bot"
27 },
28 "text": "<at>test-bot</at>"
29 }
30 ]
31}