设备上线事件

  1. {
  2. "deviceTopic": {
  3. "deviceType": "xxx",
  4. "deviceName": "xxx",
  5. "event": "online"
  6. },
  7. "messageId": "xxx",
  8. "payload": {
  9. "requestId": "xxxx",
  10. "time": 166666689096 // 上线时间毫秒
  11. }
  12. }

设备下线事件

  1. {
  2. "deviceTopic": {
  3. "deviceType": "xxx",
  4. "deviceName": "xxx",
  5. "event": "offline"
  6. },
  7. "messageId": "xxx",
  8. "payload": {
  9. "requestId": "xxxx",
  10. "reason": "close by device",
  11. "time": 166666689096 // 下线时间毫秒
  12. }
  13. }