14 lines
310 B
Go
14 lines
310 B
Go
package human
|
|
|
|
import "time"
|
|
|
|
type Human struct {
|
|
ID string
|
|
Email string
|
|
EmailPrefix string
|
|
EmailNotificationsEnabled bool
|
|
AvatarObjectID *string
|
|
LastEmailNotificationSentAt *time.Time
|
|
CreatedAt time.Time
|
|
}
|