blob: 81b0e17a000e094ac67868459da695c16e4d6ef2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
package object
// SearchHint struct.
type SearchHint struct {
Description string `json:"description"` // Object description
Global int `json:"global,omitempty"` // Information whether the object has been found globally
Group GroupsGroup `json:"group,omitempty"`
Profile UsersUser `json:"profile,omitempty"`
Section string `json:"section"`
Type string `json:"type"`
}
|