-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdummyResponse.json
41 lines (41 loc) · 1008 Bytes
/
dummyResponse.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"type": "message",
"text": "Sample with a receipt card",
"attachments": [
{
"contentType": "application/vnd.microsoft.card.receipt",
"content": {
"title": "I'm a receipt card",
"items": [
{
"title": "Sushi",
"subtitle": "2 piece",
"image": {
"url": "https://mydeploy.azurewebsites.net/sushi.png"
},
"price": "16.25",
"quantity": "1"
},
{
"title": "Tenpura",
"subtitle": "1 dish",
"image": {
"url": "https://mydeploy.azurewebsites.net/tenpura.jpg"
},
"price": "34.50",
"quantity": "2"
}
],
"total": "275.25",
"tax": "27.52",
"buttons": [
{
"type": "openUrl",
"title": "Go to my site",
"value": "https://blogs.msdn.microsoft.com/tsmatsuz"
}
]
}
}
]
}