-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy patheducation_added_student_action.go
36 lines (34 loc) · 1.1 KB
/
education_added_student_action.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package models
type EducationAddedStudentAction int
const (
NONE_EDUCATIONADDEDSTUDENTACTION EducationAddedStudentAction = iota
ASSIGNIFOPEN_EDUCATIONADDEDSTUDENTACTION
UNKNOWNFUTUREVALUE_EDUCATIONADDEDSTUDENTACTION
)
func (i EducationAddedStudentAction) String() string {
return []string{"none", "assignIfOpen", "unknownFutureValue"}[i]
}
func ParseEducationAddedStudentAction(v string) (any, error) {
result := NONE_EDUCATIONADDEDSTUDENTACTION
switch v {
case "none":
result = NONE_EDUCATIONADDEDSTUDENTACTION
case "assignIfOpen":
result = ASSIGNIFOPEN_EDUCATIONADDEDSTUDENTACTION
case "unknownFutureValue":
result = UNKNOWNFUTUREVALUE_EDUCATIONADDEDSTUDENTACTION
default:
return nil, nil
}
return &result, nil
}
func SerializeEducationAddedStudentAction(values []EducationAddedStudentAction) []string {
result := make([]string, len(values))
for i, v := range values {
result[i] = v.String()
}
return result
}
func (i EducationAddedStudentAction) isMultiValue() bool {
return false
}