-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathdisable_reason.go
39 lines (37 loc) · 1.07 KB
/
disable_reason.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
37
38
39
package models
type DisableReason int
const (
NONE_DISABLEREASON DisableReason = iota
INVALIDBILLINGPROFILE_DISABLEREASON
USERREQUESTED_DISABLEREASON
UNKNOWNFUTUREVALUE_DISABLEREASON
)
func (i DisableReason) String() string {
return []string{"none", "invalidBillingProfile", "userRequested", "unknownFutureValue"}[i]
}
func ParseDisableReason(v string) (any, error) {
result := NONE_DISABLEREASON
switch v {
case "none":
result = NONE_DISABLEREASON
case "invalidBillingProfile":
result = INVALIDBILLINGPROFILE_DISABLEREASON
case "userRequested":
result = USERREQUESTED_DISABLEREASON
case "unknownFutureValue":
result = UNKNOWNFUTUREVALUE_DISABLEREASON
default:
return nil, nil
}
return &result, nil
}
func SerializeDisableReason(values []DisableReason) []string {
result := make([]string, len(values))
for i, v := range values {
result[i] = v.String()
}
return result
}
func (i DisableReason) isMultiValue() bool {
return false
}