Files
2020-03-02 00:34:43 +11:00

25 lines
465 B
Go

package model
// User represents a user model
type User struct {
ID int
URL string
ExternalID string
Name string
Alias string
CreatedAt string
Active bool
Verified bool
Shared bool
Locale string
Timezone string
LastLoginAt string
Email string
Phone string
Signature string
Organization *Organisation
Tags []string
Suspended bool
Role string
}