@@ -9,22 +9,20 @@ import (
9
9
// TYPES
10
10
11
11
type Profile struct {
12
- Id string `json:"id"`
12
+ Id string `json:"id,width:36 "`
13
13
Name string `json:"name"`
14
14
Email string `json:"email"`
15
- EmailVerified bool `json:"emailVerified"`
16
- Key string `json:"key"`
17
- Premium bool `json:"premium"`
18
- PremiumFromOrganization bool `json:"premiumFromOrganization"`
19
- MasterPasswordHash string `json:"masterPasswordHash"`
20
- MasterPasswordHint * string `json:"masterPasswordHint,omitempty"`
21
- Culture string `json:"culture"`
22
- TwoFactorEnabled bool `json:"twoFactorEnabled"`
23
- SecurityStamp * string `json:"securityStamp,omitempty"`
24
- ForcePasswordReset bool `json:"forcePasswordReset"`
25
- UsesKeyConnector bool `json:"usesKeyConnector"`
15
+ EmailVerified bool `json:"emailVerified,width:5,right"`
16
+ Key string `json:"key,wrap"`
17
+ Premium bool `json:"premium,width:5,right"`
18
+ PremiumFromOrganization bool `json:"premiumFromOrganization,width:5,right"`
19
+ Culture string `json:"culture,width:5,right"`
20
+ TwoFactorEnabled bool `json:"twoFactorEnabled,width:5,right"`
21
+ SecurityStamp * string `json:"securityStamp,omitempty,width:5,right"`
22
+ ForcePasswordReset bool `json:"forcePasswordReset,width:5,right"`
23
+ UsesKeyConnector bool `json:"usesKeyConnector,width:5,right"`
26
24
Organizations []* Organization `json:"organizations,omitempty"`
27
- Object string `json:"object"`
25
+ Object string `json:"object,width:7,right "`
28
26
}
29
27
30
28
///////////////////////////////////////////////////////////////////////////////
0 commit comments