-
Notifications
You must be signed in to change notification settings - Fork 57
/
model_logs_sort.go
81 lines (65 loc) · 1.68 KB
/
model_logs_sort.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
/*
* Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
* This product includes software developed at Datadog (https://www.datadoghq.com/).
* Copyright 2019-Present Datadog, Inc.
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package datadog
import (
"encoding/json"
"fmt"
)
// LogsSort Sort parameters when querying logs.
type LogsSort string
// List of LogsSort
const (
LOGSSORT_TIMESTAMP_ASCENDING LogsSort = "timestamp"
LOGSSORT_TIMESTAMP_DESCENDING LogsSort = "-timestamp"
)
func (v *LogsSort) UnmarshalJSON(src []byte) error {
var value string
err := json.Unmarshal(src, &value)
if err != nil {
return err
}
enumTypeValue := LogsSort(value)
for _, existing := range []LogsSort{"timestamp", "-timestamp"} {
if existing == enumTypeValue {
*v = enumTypeValue
return nil
}
}
return fmt.Errorf("%+v is not a valid LogsSort", value)
}
// Ptr returns reference to LogsSort value
func (v LogsSort) Ptr() *LogsSort {
return &v
}
type NullableLogsSort struct {
value *LogsSort
isSet bool
}
func (v NullableLogsSort) Get() *LogsSort {
return v.value
}
func (v *NullableLogsSort) Set(val *LogsSort) {
v.value = val
v.isSet = true
}
func (v NullableLogsSort) IsSet() bool {
return v.isSet
}
func (v *NullableLogsSort) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableLogsSort(val *LogsSort) *NullableLogsSort {
return &NullableLogsSort{value: val, isSet: true}
}
func (v NullableLogsSort) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableLogsSort) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}