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