mirror of https://gitee.com/answerdev/answer.git
14 lines
320 B
Go
14 lines
320 B
Go
package schema
|
|
|
|
const (
|
|
ForbiddenReasonTypeInactive = "inactive"
|
|
ForbiddenReasonTypeURLExpired = "url_expired"
|
|
ForbiddenReasonTypeUserSuspended = "suspended"
|
|
)
|
|
|
|
// ForbiddenResp forbidden response
|
|
type ForbiddenResp struct {
|
|
// forbidden reason type
|
|
Type string `json:"type" enums:"inactive,url_expired"`
|
|
}
|