-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthtype_jsonenums.go
59 lines (52 loc) · 1.43 KB
/
authtype_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
57
58
59
// generated by jsonenums -type=AuthType; DO NOT EDIT
package webhookrelay
import (
"encoding/json"
"fmt"
)
var (
_AuthTypeNameToValue = map[string]AuthType{
"AuthTypeNone": AuthTypeNone,
"AuthTypeBasic": AuthTypeBasic,
"AuthTypeToken": AuthTypeToken,
}
_AuthTypeValueToName = map[AuthType]string{
AuthTypeNone: "AuthTypeNone",
AuthTypeBasic: "AuthTypeBasic",
AuthTypeToken: "AuthTypeToken",
}
)
func init() {
var v AuthType
if _, ok := interface{}(v).(fmt.Stringer); ok {
_AuthTypeNameToValue = map[string]AuthType{
interface{}(AuthTypeNone).(fmt.Stringer).String(): AuthTypeNone,
interface{}(AuthTypeBasic).(fmt.Stringer).String(): AuthTypeBasic,
interface{}(AuthTypeToken).(fmt.Stringer).String(): AuthTypeToken,
}
}
}
// MarshalJSON is generated so AuthType satisfies json.Marshaler.
func (r AuthType) MarshalJSON() ([]byte, error) {
if s, ok := interface{}(r).(fmt.Stringer); ok {
return json.Marshal(s.String())
}
s, ok := _AuthTypeValueToName[r]
if !ok {
return nil, fmt.Errorf("invalid AuthType: %d", r)
}
return json.Marshal(s)
}
// UnmarshalJSON is generated so AuthType satisfies json.Unmarshaler.
func (r *AuthType) UnmarshalJSON(data []byte) error {
var s string
if err := json.Unmarshal(data, &s); err != nil {
return fmt.Errorf("AuthType should be a string, got %s", data)
}
v, ok := _AuthTypeNameToValue[s]
if !ok {
return fmt.Errorf("invalid AuthType %q", s)
}
*r = v
return nil
}