-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathapp_management_restriction_state.go
36 lines (34 loc) · 1.13 KB
/
app_management_restriction_state.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 AppManagementRestrictionState int
const (
ENABLED_APPMANAGEMENTRESTRICTIONSTATE AppManagementRestrictionState = iota
DISABLED_APPMANAGEMENTRESTRICTIONSTATE
UNKNOWNFUTUREVALUE_APPMANAGEMENTRESTRICTIONSTATE
)
func (i AppManagementRestrictionState) String() string {
return []string{"enabled", "disabled", "unknownFutureValue"}[i]
}
func ParseAppManagementRestrictionState(v string) (any, error) {
result := ENABLED_APPMANAGEMENTRESTRICTIONSTATE
switch v {
case "enabled":
result = ENABLED_APPMANAGEMENTRESTRICTIONSTATE
case "disabled":
result = DISABLED_APPMANAGEMENTRESTRICTIONSTATE
case "unknownFutureValue":
result = UNKNOWNFUTUREVALUE_APPMANAGEMENTRESTRICTIONSTATE
default:
return nil, nil
}
return &result, nil
}
func SerializeAppManagementRestrictionState(values []AppManagementRestrictionState) []string {
result := make([]string, len(values))
for i, v := range values {
result[i] = v.String()
}
return result
}
func (i AppManagementRestrictionState) isMultiValue() bool {
return false
}