team.go

 1package proto
 2
 3// Team is an interface representing a team.
 4type Team interface {
 5	// ID returns the user's ID.
 6	ID() int64
 7	// Name returns the org's name.
 8	Name() string
 9	// Parent organization's ID.
10	Org() int64
11}