12 lines
530 B
Go
12 lines
530 B
Go
package model
|
|
|
|
type ConfigurationDevice struct {
|
|
AntennaHeight float64 `json:"antenna_height,omitempty"`
|
|
NightMode bool `json:"night_mode,omitempty"`
|
|
OnboardingShown bool `json:"onboarding_shown,omitempty"`
|
|
PowerOnBottomConnector bool `json:"power_on_bottom_connector,omitempty"`
|
|
PrivacyPolicyAccepted bool `json:"privacy_policy_accepted,omitempty"`
|
|
Role string `json:"role,omitempty"`
|
|
UsageAnalysisAccepted bool `json:"usage_analysis_accepted,omitempty"`
|
|
}
|