Matrix/entities/device/device.go

9 lines
256 B
Go
Raw Normal View History

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
}