-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_log_level.go
118 lines (98 loc) · 2.61 KB
/
model_log_level.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/* Copyright 2018-2020 KoreWireless
*
* This is part of the KoreWireless Omnicore SDK.
* It is licensed under the BSD 3-Clause license; you may not use this file
* except in compliance with the License.
*
* You may obtain a copy of the License at:
* https://opensource.org/licenses/BSD-3-Clause
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package OmniCore
import (
"encoding/json"
"fmt"
)
// LogLevel the model 'LogLevel'
type LogLevel string
// List of LogLevel
const (
INFO LogLevel = "INFO"
ERROR LogLevel = "ERROR"
)
// All allowed values of LogLevel enum
var AllowedLogLevelEnumValues = []LogLevel{
"INFO",
"ERROR",
}
func (v *LogLevel) UnmarshalJSON(src []byte) error {
var value string
err := json.Unmarshal(src, &value)
if err != nil {
return err
}
enumTypeValue := LogLevel(value)
for _, existing := range AllowedLogLevelEnumValues {
if existing == enumTypeValue {
*v = enumTypeValue
return nil
}
}
return fmt.Errorf("%+v is not a valid LogLevel", value)
}
// NewLogLevelFromValue returns a pointer to a valid LogLevel
// for the value passed as argument, or an error if the value passed is not allowed by the enum
func NewLogLevelFromValue(v string) (*LogLevel, error) {
ev := LogLevel(v)
if ev.IsValid() {
return &ev, nil
} else {
return nil, fmt.Errorf("invalid value '%v' for LogLevel: valid values are %v", v, AllowedLogLevelEnumValues)
}
}
// IsValid return true if the value is valid for the enum, false otherwise
func (v LogLevel) IsValid() bool {
for _, existing := range AllowedLogLevelEnumValues {
if existing == v {
return true
}
}
return false
}
// Ptr returns reference to LogLevel value
func (v LogLevel) Ptr() *LogLevel {
return &v
}
type NullableLogLevel struct {
value *LogLevel
isSet bool
}
func (v NullableLogLevel) Get() *LogLevel {
return v.value
}
func (v *NullableLogLevel) Set(val *LogLevel) {
v.value = val
v.isSet = true
}
func (v NullableLogLevel) IsSet() bool {
return v.isSet
}
func (v *NullableLogLevel) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableLogLevel(val *LogLevel) *NullableLogLevel {
return &NullableLogLevel{value: val, isSet: true}
}
func (v NullableLogLevel) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableLogLevel) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}