I have a complex object with this structure.
type People struct {
Objectives []string `validate:"required,ValidateCustom" json:"Objectives"`
}
And I need to test the list thinking in a enum, using gopkg.in/go-playground/validator.v9
:
//ValidateCustom -- ValidateCustom
func ValidateCustom(field validator.FieldLevel) bool {
switch strings.ToUpper(field.Field().String()) {
case "emumA":
case "enumB":
return true
default:
return false
}
}
This example uses a idea of string but how can I build to []string to iterate?
I founded the answer... using slice and Interface