-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtunnelmode_jsonenums.go
56 lines (49 loc) · 1.38 KB
/
tunnelmode_jsonenums.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// generated by jsonenums -type=TunnelMode; DO NOT EDIT
package webhookrelay
import (
"encoding/json"
"fmt"
)
var (
_TunnelModeNameToValue = map[string]TunnelMode{
"TunnelModeInactive": TunnelModeInactive,
"TunnelModeActive": TunnelModeActive,
}
_TunnelModeValueToName = map[TunnelMode]string{
TunnelModeInactive: "TunnelModeInactive",
TunnelModeActive: "TunnelModeActive",
}
)
func init() {
var v TunnelMode
if _, ok := interface{}(v).(fmt.Stringer); ok {
_TunnelModeNameToValue = map[string]TunnelMode{
interface{}(TunnelModeInactive).(fmt.Stringer).String(): TunnelModeInactive,
interface{}(TunnelModeActive).(fmt.Stringer).String(): TunnelModeActive,
}
}
}
// MarshalJSON is generated so TunnelMode satisfies json.Marshaler.
func (r TunnelMode) MarshalJSON() ([]byte, error) {
if s, ok := interface{}(r).(fmt.Stringer); ok {
return json.Marshal(s.String())
}
s, ok := _TunnelModeValueToName[r]
if !ok {
return nil, fmt.Errorf("invalid TunnelMode: %d", r)
}
return json.Marshal(s)
}
// UnmarshalJSON is generated so TunnelMode satisfies json.Unmarshaler.
func (r *TunnelMode) UnmarshalJSON(data []byte) error {
var s string
if err := json.Unmarshal(data, &s); err != nil {
return fmt.Errorf("TunnelMode should be a string, got %s", data)
}
v, ok := _TunnelModeNameToValue[s]
if !ok {
return fmt.Errorf("invalid TunnelMode %q", s)
}
*r = v
return nil
}