Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Account ¶
type Account struct {
Id string `json:"id" postgres:"id,primarykey,type:uuid,default:gen_random_uuid()"`
Name string `json:"name" postgres:"name,default:''"`
EmailAddress string `` /* 138-byte string literal not displayed */
CreatedAt *time.Time `json:"created_at" postgres:"created_at,default:now()"`
Locked bool `json:"locked" postgres:"locked,default:false"`
Customer *customer.Customer `json:"customer" postgres:"customer,nullable"`
Roles []string `json:"roles" postgres:"roles"`
}
Click to show internal directories.
Click to hide internal directories.