Versions in this module Expand all Collapse all v0 v0.0.1 Nov 16, 2020 Changes in this version + func RegisterHandlers(router interface{ ... }, si ServerInterface) + type CreateUserJSONBody User + type CreateUserJSONRequestBody CreateUserJSONBody + type Error struct + Field *string + Reason *string + type ErrorResponse Errors + type Errors struct + Errors *[]Error + type GetUsersParams struct + Limit *Limit + Offset *Offset + type Healthcheck struct + Version string + type Healthcheck200 Healthcheck + type Id string + type Limit int + type Offset int + type PostAuthEmailChangeConfirmJSONBody struct + Email string + Key string + type PostAuthEmailChangeConfirmJSONRequestBody PostAuthEmailChangeConfirmJSONBody + type PostAuthEmailChangeConfirmParams struct + Authorization string + ContentType string + type PostAuthEmailChangeParams struct + Authorization string + ContentType string + type PostAuthLoginJSONBody struct + Email string + Password string + type PostAuthLoginJSONRequestBody PostAuthLoginJSONBody + type PostAuthLoginParams struct + ContentType string + type PostAuthPasswordResetConfirmJSONBody struct + Key string + Password string + type PostAuthPasswordResetConfirmJSONRequestBody PostAuthPasswordResetConfirmJSONBody + type PostAuthPasswordResetConfirmParams struct + Authorization string + ContentType string + type PostAuthPasswordResetJSONBody struct + Email string + type PostAuthPasswordResetJSONRequestBody PostAuthPasswordResetJSONBody + type PostAuthPasswordResetParams struct + Authorization string + ContentType string + type PostAuthRegisterJSONBody User + type PostAuthRegisterJSONRequestBody PostAuthRegisterJSONBody + type PostAuthResendVerificationEmailParams struct + Authorization string + ContentType string + type PostAuthUserConfirmJSONBody struct + Key string + type PostAuthUserConfirmJSONRequestBody PostAuthUserConfirmJSONBody + type PostAuthUserConfirmParams struct + ContentType string + type ServerInterface interface + CreateUser func(ctx echo.Context) error + GetUser func(ctx echo.Context, id Id) error + GetUsers func(ctx echo.Context, params GetUsersParams) error + HealthCheck func(ctx echo.Context) error + PostAuthEmailChange func(ctx echo.Context, params PostAuthEmailChangeParams) error + PostAuthEmailChangeConfirm func(ctx echo.Context, params PostAuthEmailChangeConfirmParams) error + PostAuthLogin func(ctx echo.Context, params PostAuthLoginParams) error + PostAuthPasswordReset func(ctx echo.Context, params PostAuthPasswordResetParams) error + PostAuthPasswordResetConfirm func(ctx echo.Context, params PostAuthPasswordResetConfirmParams) error + PostAuthRegister func(ctx echo.Context) error + PostAuthResendVerificationEmail func(ctx echo.Context, params PostAuthResendVerificationEmailParams) error + PostAuthUserConfirm func(ctx echo.Context, params PostAuthUserConfirmParams) error + UpdateUser func(ctx echo.Context, id Id) error + type ServerInterfaceWrapper struct + Handler ServerInterface + func (w *ServerInterfaceWrapper) CreateUser(ctx echo.Context) error + func (w *ServerInterfaceWrapper) GetUser(ctx echo.Context) error + func (w *ServerInterfaceWrapper) GetUsers(ctx echo.Context) error + func (w *ServerInterfaceWrapper) HealthCheck(ctx echo.Context) error + func (w *ServerInterfaceWrapper) PostAuthEmailChange(ctx echo.Context) error + func (w *ServerInterfaceWrapper) PostAuthEmailChangeConfirm(ctx echo.Context) error + func (w *ServerInterfaceWrapper) PostAuthLogin(ctx echo.Context) error + func (w *ServerInterfaceWrapper) PostAuthPasswordReset(ctx echo.Context) error + func (w *ServerInterfaceWrapper) PostAuthPasswordResetConfirm(ctx echo.Context) error + func (w *ServerInterfaceWrapper) PostAuthRegister(ctx echo.Context) error + func (w *ServerInterfaceWrapper) PostAuthResendVerificationEmail(ctx echo.Context) error + func (w *ServerInterfaceWrapper) PostAuthUserConfirm(ctx echo.Context) error + func (w *ServerInterfaceWrapper) UpdateUser(ctx echo.Context) error + type Slice struct + Count int + Offset *int + type UnauthorizedError Errors + type UpdateUserJSONBody User + type UpdateUserJSONRequestBody UpdateUserJSONBody + type User struct + Birthday *openapi_types.Date + Email string + FirstName string + Id *string + LastName *string + type User200 User + type Users200 struct + Data *[]User