mirror of
https://github.com/netbirdio/netbird.git
synced 2026-08-04 19:45:14 -04:00
19 lines
581 B
Go
19 lines
581 B
Go
package nmdata
|
|
|
|
import "time"
|
|
|
|
// AccountSettingsInfo is the slim twin of types.AccountSettingsInfo.
|
|
type AccountSettingsInfo struct {
|
|
PeerLoginExpirationEnabled bool
|
|
PeerLoginExpiration time.Duration
|
|
PeerInactivityExpirationEnabled bool
|
|
PeerInactivityExpiration time.Duration
|
|
DNSDomain string
|
|
IPv6EnabledGroups []string
|
|
RoutingPeerDNSResolutionEnabled bool
|
|
LazyConnectionEnabled bool
|
|
AutoUpdateVersion string
|
|
AutoUpdateAlways bool
|
|
MetricsPushEnabled bool
|
|
}
|