13 lines
305 B
Go
Raw Normal View History

2023-02-12 23:13:04 +01:00
package model
type Error struct {
2023-06-23 19:24:59 +02:00
Code int `json:"Code"`
Message string `json:"Message"`
2023-02-12 23:13:04 +01:00
}
2023-07-21 15:13:00 +02:00
type Settings struct {
MailLinkOnly bool `json:"MailLinkOnly"`
PersistentConfigSupported bool `json:"PersistentConfigSupported"`
SelfProvisioning bool `json:"SelfProvisioning"`
}