package
Version:
v0.0.0-...-66da4ae
Opens a new window with list of versions in this module.
Published: Oct 23, 2023
License: GPL-3.0
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type LoginRequestJWT struct {
Username string `json:"username" example:"edoardo" structs:"username"`
Password string `json:"password" example:"Nethesis,1234" structs:"password"`
}
type LoginResponseJWT struct {
Code int `json:"code" example:"200" structs:"code"`
Token string ``
Expire string `json:"expire" example:"2021-04-27T16:49:08+02:00" structs:"expire"`
}
type StatusBadRequest struct {
Code int `json:"code" example:"400" structs:"code"`
Message string `json:"message" example:"Bad request" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
type StatusCreated struct {
Code int `json:"code" example:"201" structs:"code"`
Message string `json:"message" example:"Created" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
type StatusForbidden struct {
Code int `json:"code" example:"403" structs:"code"`
Message string `json:"message" example:"Forbidden" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
type StatusInternalServerError struct {
Code int `json:"code" example:"500" structs:"code"`
Message string `json:"message" example:"Internal server error" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
type StatusNotFound struct {
Code int `json:"code" example:"404" structs:"code"`
Message string `json:"message" example:"Not found" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
type StatusOK struct {
Code int `json:"code" example:"200" structs:"code"`
Message string `json:"message" example:"Success" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
type StatusServiceUnavailable struct {
Code int `json:"code" example:"503" structs:"code"`
Message string `json:"message" example:"Service unavailable" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
type StatusUnauthorized struct {
Code int `json:"code" example:"401" structs:"code"`
Message string `json:"message" example:"Unauthorized" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.