@@ -6,20 +6,22 @@ import (
66
77// User represents a User in the OpenStack Identity Service.
88type User struct {
9- ID string `json:"id"`
10- DomainID string `json:"domain_id"`
11- Name string `json:"name"`
12- Email string `json:"email"`
13- AreaCode string `json:"areacode"`
14- Phone string `json:"phone"`
15- Description string `json:"description"`
16- AccessMode string `json:"access_mode"`
17- Enabled bool `json:"enabled"`
18- PasswordStatus bool `json:"pwd_status"`
19- PasswordStength string `json:"pwd_stength"`
20- CreateAt string `json:"create_time"`
21- UpdateAt string `json:"update_time"`
22- LastLogin string `json:"last_login_time"`
9+ ID string `json:"id"`
10+ DomainID string `json:"domain_id"`
11+ Name string `json:"name"`
12+ Email string `json:"email"`
13+ AreaCode string `json:"areacode"`
14+ Phone string `json:"phone"`
15+ Description string `json:"description"`
16+ AccessMode string `json:"access_mode"`
17+ Enabled bool `json:"enabled"`
18+ PasswordStatus bool `json:"pwd_status"`
19+ PasswordStrength string `json:"pwd_strength"`
20+ CreateAt string `json:"create_time"`
21+ UpdateAt string `json:"update_time"`
22+ LastLogin string `json:"last_login_time"`
23+ XuserID string `json:"xuser_id"`
24+ XuserType string `json:"xuser_type"`
2325
2426 // Links contains referencing links to the user.
2527 Links map [string ]interface {} `json:"links"`
0 commit comments