mirror of
https://github.com/m5stack/StackChan.git
synced 2026-04-28 19:34:23 +00:00
25 lines
721 B
Go
25 lines
721 B
Go
/*
|
|
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"`
|
|
}
|