mirror of
https://github.com/m5stack/StackChan.git
synced 2026-05-20 11:49:45 -07:00
feat(server): deliver major backend expansion with v2 APIs, AI integration, and realtime infrastructure (#36)
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
/*
|
||||
SPDX-FileCopyrightText: 2026 M5Stack Technology CO LTD
|
||||
SPDX-License-Identifier: MIT
|
||||
*/
|
||||
|
||||
package xiaozhi
|
||||
|
||||
type Device struct {
|
||||
DeviceID int `json:"device_id"`
|
||||
AgentID int `json:"agent_id"`
|
||||
ID int `json:"id"`
|
||||
ProductID int `json:"product_id"`
|
||||
Seed string `json:"seed"`
|
||||
SerialNumber string `json:"serial_number"`
|
||||
ActivateAt string `json:"activate_at"`
|
||||
ProductName string `json:"product_name"`
|
||||
MacAddress string `json:"mac_address"`
|
||||
AppVersion string `json:"app_version"`
|
||||
BoardName string `json:"board_name"`
|
||||
ClientId string `json:"client_id"`
|
||||
IccID string `json:"iccid"`
|
||||
Imei string `json:"imei"`
|
||||
Online bool `json:"online"`
|
||||
}
|
||||
Reference in New Issue
Block a user