9 lines
225 B
Go
9 lines
225 B
Go
|
package account
|
||
|
|
||
|
// Team wraps an NS1 /accounts/teams resource
|
||
|
type Team struct {
|
||
|
ID string `json:"id,omitempty"`
|
||
|
Name string `json:"name"`
|
||
|
Permissions PermissionsMap `json:"permissions"`
|
||
|
}
|