@@ -18,20 +18,20 @@ import (
18
18
// TYPES
19
19
20
20
type Profile struct {
21
- Id string `json:"id,width:36"`
21
+ Id string `json:"id" writer:" ,width:36"`
22
22
Name string `json:"name"`
23
23
Email string `json:"email"`
24
- EmailVerified bool `json:"emailVerified,width:5,right"`
25
- Key string `json:"key,wrap"`
26
- Premium bool `json:"premium,width:5,right"`
27
- PremiumFromOrganization bool `json:"premiumFromOrganization,width:5,right"`
28
- Culture string `json:"culture,width:5,right"`
29
- TwoFactorEnabled bool `json:"twoFactorEnabled,width:5,right"`
30
- SecurityStamp * string `json:"securityStamp,omitempty, width:5,right"`
31
- ForcePasswordReset bool `json:"forcePasswordReset,width:5,right"`
32
- UsesKeyConnector bool `json:"usesKeyConnector,width:5,right"`
24
+ EmailVerified bool `json:"emailVerified" writer:" ,width:5,right,omitempty "`
25
+ Key string `json:"key" writer:" ,wrap,omitempty "`
26
+ Premium bool `json:"premium" writer:" ,width:5,right,omitempty "`
27
+ PremiumFromOrganization bool `json:"premiumFromOrganization" writer:" ,width:5,right,omitempty "`
28
+ Culture string `json:"culture" writer:" ,width:5,right,omitempty "`
29
+ TwoFactorEnabled bool `json:"twoFactorEnabled" writer:" ,width:5,right,omitempty "`
30
+ SecurityStamp * string `json:"securityStamp" writer:", width:5,right,omitempty "`
31
+ ForcePasswordReset bool `json:"forcePasswordReset" writer:" ,width:5,right,omitempty "`
32
+ UsesKeyConnector bool `json:"usesKeyConnector" writer:" ,width:5,right,omitempty "`
33
33
Organizations []* Organization `json:"organizations,omitempty"`
34
- Object string `json:"object,width:7,right "`
34
+ Object string `json:"object" writer:"- "`
35
35
}
36
36
37
37
///////////////////////////////////////////////////////////////////////////////
0 commit comments