Last active
July 14, 2021 00:13
-
-
Save nunomazer/e669578acf7034434f361a4c451c461e to your computer and use it in GitHub Desktop.
Modelos de mensagens para sistema de rastreamento de localização de filhos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Arquivos de exemplo do Faça valer a pena seção 3 Web Services |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"pai": { | |
"cod": 1, | |
"nome": "Nome do pai" | |
}, | |
"filho": { | |
"cod": 1.1, | |
"nome": "Nome do filho" | |
}, | |
"chamada": { | |
"data_hora": "2021-06-17 19:09:21", | |
"direcao": "IN", | |
"telefone": "42-9XXX XXXX" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"pai": { | |
"cod": 1, | |
"nome": "Nome do pai" | |
}, | |
"filho": { | |
"cod": 1.1, | |
"nome": "Nome do filho" | |
}, | |
"localizacao": { | |
"data_hora": "2021-06-12 09:37:11", | |
"coordenadas": { | |
"lat": 1111, | |
"long": 1111 | |
}, | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"status": { | |
"doc": 200, | |
"msg": "Localização salva com sucesso" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment