Skip to content

Commit 40260ad

Browse files
committed
update iam user result object
1 parent ee9e149 commit 40260ad

File tree

1 file changed

+16
-14
lines changed

1 file changed

+16
-14
lines changed

openstack/identity/v3.0/users/results.go

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,22 @@ import (
66

77
// User represents a User in the OpenStack Identity Service.
88
type 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

Comments
 (0)