I have a following type defined using iota in golang.
type StatusType int
const (
PENDING StatusType = iota
APPROVED
REJECTED
)
I want to restrict the value passed in in REST-API to the StatusType. Such that the value should not exceed 0,1,2.