Add support for receiving, storing, and returning urgent flags on messages

This commit is contained in:
Jon Chambers
2022-08-02 12:05:23 -04:00
committed by GitHub
parent 1175ff5867
commit 9c03f2e468
11 changed files with 165 additions and 14 deletions

View File

@@ -0,0 +1,19 @@
{
"urgent": false,
"messages": [
{
"type": 1,
"destinationDeviceId": 1,
"destinationRegistrationId": 222,
"content": "Zm9vYmFyego",
"timestamp": 1234
},
{
"type": 1,
"destinationDeviceId": 2,
"destinationRegistrationId": 333,
"content": "Zm9vYmFyego",
"timestamp": 1234
}
]
}

View File

@@ -0,0 +1,11 @@
{
"urgent": false,
"messages": [
{
"type": 1,
"destinationDeviceId": 1,
"content": "Zm9vYmFyego",
"timestamp": 1234
}
]
}