2020-09-28 20:37:02 +00:00
|
|
|
package device
|
|
|
|
|
|
|
|
type Device struct {
|
2020-10-04 12:22:52 +00:00
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
AccessToken string `json:"accessToken,omitempty"`
|
|
|
|
Keys map[string]*Key `json:"keys,omitempty"`
|
2020-09-28 20:37:02 +00:00
|
|
|
}
|