Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Image ¶
type Image struct { Id int64 `json:"id"` Thumb string `json:"thumb"` Url string `json:"url"` Image string `json:"image"` MimeType string `json:"mime_type"` Title string `json:"title"` Size int64 `json:"size"` Name string `json:"name"` CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` }
type User ¶
type User struct { Id int64 `json:"id"` Nickname string `json:"nickname"` FirstName string `json:"first_name"` LastName string `json:"last_name"` Email string `json:"email"` History []*UserHistory `json:"history"` Status string `json:"status"` Image *Image `json:"image"` SignInCount int64 `json:"sign_in_count"` CurrentSignInIp string `json:"current_sign_in_ip"` LastSignInIp string `json:"last_sign_in_ip"` CreatedBy *User `json:"created_by"` Role *Role `json:"role"` Meta []*UserMeta `json:"meta"` Lang string `json:"lang"` CurrentSignInAt *time.Time `json:"current_sign_in_at"` LastSignInAt *time.Time `json:"last_sign_in_at"` CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` }
type UserHistory ¶ added in v0.0.6
Click to show internal directories.
Click to hide internal directories.