harbor/tests/apitests/apilib/user.go

13 lines
357 B
Go
Raw Normal View History

2016-08-08 10:40:14 +02:00
package apilib
2016-06-07 06:19:48 +02:00
2016-08-08 10:40:14 +02:00
//User ...
2016-06-07 06:19:48 +02:00
type User struct {
2016-08-08 10:40:14 +02:00
UserID int32 `json:"user_id,omitempty"`
2016-06-07 06:19:48 +02:00
Username string `json:"username,omitempty"`
Email string `json:"email,omitempty"`
Password string `json:"password,omitempty"`
Realname string `json:"realname,omitempty"`
Comment string `json:"comment,omitempty"`
Deleted int32 `json:"deleted,omitempty"`
}