33 lines
931 B
Go
33 lines
931 B
Go
// Code generated from ace.jar fields *.json files
|
|
// DO NOT EDIT.
|
|
|
|
package unifi
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
)
|
|
|
|
// just to fix compile issues with the import
|
|
var (
|
|
_ fmt.Formatter
|
|
_ context.Context
|
|
)
|
|
|
|
type SettingBroadcast struct {
|
|
ID string `json:"_id,omitempty"`
|
|
SiteID string `json:"site_id,omitempty"`
|
|
|
|
Hidden bool `json:"attr_hidden,omitempty"`
|
|
HiddenID string `json:"attr_hidden_id,omitempty"`
|
|
NoDelete bool `json:"attr_no_delete,omitempty"`
|
|
NoEdit bool `json:"attr_no_edit,omitempty"`
|
|
|
|
SoundAfterEnabled bool `json:"sound_after_enabled"`
|
|
SoundAfterResource string `json:"sound_after_resource,omitempty"`
|
|
SoundAfterType string `json:"sound_after_type,omitempty"` // sample|media
|
|
SoundBeforeEnabled bool `json:"sound_before_enabled"`
|
|
SoundBeforeResource string `json:"sound_before_resource,omitempty"`
|
|
SoundBeforeType string `json:"sound_before_type,omitempty"` // sample|media
|
|
}
|