mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-16 04:54:42 +00:00
Everything service has examples now, fixes for client generator (#203)
This commit is contained in:
52
emoji/examples.json
Normal file
52
emoji/examples.json
Normal file
@@ -0,0 +1,52 @@
|
||||
{
|
||||
"find": [
|
||||
{
|
||||
"title": "Find emoji",
|
||||
"run_check": false,
|
||||
"request": {
|
||||
"alias": ":beer:"
|
||||
},
|
||||
"response": {
|
||||
"emoji": "🍺"
|
||||
}
|
||||
}
|
||||
],
|
||||
"flag": [
|
||||
{
|
||||
"title": "Get flag by country code",
|
||||
"run_check": false,
|
||||
"request": {
|
||||
"alias": "GB"
|
||||
},
|
||||
"response": {
|
||||
"flag": "🇬🇧"
|
||||
}
|
||||
}
|
||||
],
|
||||
"print": [
|
||||
{
|
||||
"title": "Print text including emoji",
|
||||
"run_check": false,
|
||||
"request": {
|
||||
"text": "let's grab a :beer:"
|
||||
},
|
||||
"response": {
|
||||
"text": "let's grab a 🍺"
|
||||
}
|
||||
}
|
||||
],
|
||||
"send": [
|
||||
{
|
||||
"title": "Send a text containing an emoji to anyone via SMS.",
|
||||
"run_check": false,
|
||||
"request": {
|
||||
"from": "Alice",
|
||||
"to": "+44782669123",
|
||||
"message": "let's grab a :beer:"
|
||||
},
|
||||
"response": {
|
||||
"text": "let's grab a 🍺"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user