15 lines
416 B
Go
Raw Normal View History

package model
type Error struct {
Code int `json:"Code"`
Message string `json:"Message"`
}
type Settings struct {
MailLinkOnly bool `json:"MailLinkOnly"`
PersistentConfigSupported bool `json:"PersistentConfigSupported"`
SelfProvisioning bool `json:"SelfProvisioning"`
ApiAdminOnly bool `json:"ApiAdminOnly"`
2025-05-12 22:53:43 +02:00
WebAuthnEnabled bool `json:"WebAuthnEnabled"`
}