Documentation ¶
Overview ¶
THIS FILE IS A GENERATED CODE. DO NOT EDIT
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IPostUpdateUserNameController ¶
type IPostUpdateUserNameController interface {
PostUpdateUserName(c echo.Context, req *PostUpdateUserNameRequest) (res *PostUpdateUserNameResponse, err error)
}
type IPostUpdateUserPasswordController ¶
type IPostUpdateUserPasswordController interface {
PostUpdateUserPassword(c echo.Context, req *PostUpdateUserPasswordRequest) (res *PostUpdateUserPasswordResponse, err error)
}
type PostUpdateUserNameController ¶
type PostUpdateUserNameController struct { }
func NewPostUpdateUserNameController ¶
func NewPostUpdateUserNameController() *PostUpdateUserNameController
func (*PostUpdateUserNameController) PostUpdateUserName ¶
func (p *PostUpdateUserNameController) PostUpdateUserName( ctx context.Context, c echo.Context, req *PostUpdateUserNameRequest, ) (res *PostUpdateUserNameResponse, err error)
PostUpdateUserName @Summary WIP @Description WIP @Accept json @Produce json @Param Name body string WIP:${isRequire} WIP:${description} @Success 200 {object} PostUpdateUserNameResponse @Failure 400 {object} WIP @Router /service/user/update_user_name [POST]
type PostUpdateUserNameRequest ¶
type PostUpdateUserNameRequest struct {
Name string
}
type PostUpdateUserPasswordController ¶
type PostUpdateUserPasswordController struct { }
func NewPostUpdateUserPasswordController ¶
func NewPostUpdateUserPasswordController() *PostUpdateUserPasswordController
func (*PostUpdateUserPasswordController) PostUpdateUserPassword ¶
func (p *PostUpdateUserPasswordController) PostUpdateUserPassword( ctx context.Context, c echo.Context, req *PostUpdateUserPasswordRequest, ) (res *PostUpdateUserPasswordResponse, err error)
PostUpdateUserPassword @Summary WIP @Description WIP @Accept json @Produce json @Param Password body string WIP:${isRequire} WIP:${description} @Param PasswordConfirm body string WIP:${isRequire} WIP:${description} @Success 200 {object} PostUpdateUserPasswordResponse @Failure 400 {object} WIP @Router /service/user/update_user_password [POST]
type Routes ¶
type Routes struct {
// contains filtered or unexported fields
}