You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
decort-golang-sdk/pkg/cloudbroker/group/models.go

43 lines
599 B

package group
type ItemGroup struct {
// CKey
CKey string `json:"_ckey"`
// Meta
Meta []interface{} `json:"meta"`
// Is active
Actice bool `json:"active"`
// Description
Description string `json:"description"`
// Domain
Domain string `json:"domain"`
// GID
GID uint64 `json:"gid"`
// GUID
GUID string `json:"guid"`
// ID
ID string
// Last check
LastCheck uint64 `json:"lastcheck"`
// Roles
Roles []interface{} `json:"roles"`
// Users
Users []string `json:"users"`
}
type ListGroups struct {
Data []ItemGroup `json:"data"`
EntryCount uint64 `json:"entryCount"`
}