Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type UserCreateModel ¶
type UserCreateResponse ¶
type UserCreateResponse struct {
Success bool `json:"success"`
User *UserShowModel `json:"user"`
Message string `json:"message"`
}
type UserListResponse ¶
type UserListResponse struct {
Success bool `json:"success"`
Users *[]UserShowModel `json:"users"`
Message string `json:"message"`
}
type UserShowModel ¶
type UserShowResponse ¶
type UserShowResponse struct {
Success bool `json:"success"`
User *UserShowModel `json:"user"`
Message string `json:"message"`
}
type UserUpdateModel ¶
type UserUpdateResponse ¶
type UserUpdateResponse struct {
Success bool `json:"success"`
User *UserShowModel `json:"user"`
Message string `json:"message"`
}
Click to show internal directories.
Click to hide internal directories.