-
Notifications
You must be signed in to change notification settings - Fork 13
/
searchcriteria.go
150 lines (100 loc) · 3.52 KB
/
searchcriteria.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
package platformclientv2
import (
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Searchcriteria
type Searchcriteria struct {
// EndValue - The end value of the range. This field is used for range search types.
EndValue *string `json:"endValue,omitempty"`
// Values - A list of values for the search to match against
Values *[]string `json:"values,omitempty"`
// StartValue - The start value of the range. This field is used for range search types.
StartValue *string `json:"startValue,omitempty"`
// Fields - Field names to search against
Fields *[]string `json:"fields,omitempty"`
// Value - A value for the search to match against
Value *string `json:"value,omitempty"`
// Operator - How to apply this search criteria against other criteria
Operator *string `json:"operator,omitempty"`
// Group - Groups multiple conditions
Group *[]Searchcriteria `json:"group,omitempty"`
// DateFormat - Set date format for criteria values when using date range search type. Supports Java date format syntax, example yyyy-MM-dd'T'HH:mm:ss.SSSX.
DateFormat *string `json:"dateFormat,omitempty"`
// VarType
VarType *string `json:"type,omitempty"`
}
func (o *Searchcriteria) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Searchcriteria
return json.Marshal(&struct {
EndValue *string `json:"endValue,omitempty"`
Values *[]string `json:"values,omitempty"`
StartValue *string `json:"startValue,omitempty"`
Fields *[]string `json:"fields,omitempty"`
Value *string `json:"value,omitempty"`
Operator *string `json:"operator,omitempty"`
Group *[]Searchcriteria `json:"group,omitempty"`
DateFormat *string `json:"dateFormat,omitempty"`
VarType *string `json:"type,omitempty"`
*Alias
}{
EndValue: o.EndValue,
Values: o.Values,
StartValue: o.StartValue,
Fields: o.Fields,
Value: o.Value,
Operator: o.Operator,
Group: o.Group,
DateFormat: o.DateFormat,
VarType: o.VarType,
Alias: (*Alias)(o),
})
}
func (o *Searchcriteria) UnmarshalJSON(b []byte) error {
var SearchcriteriaMap map[string]interface{}
err := json.Unmarshal(b, &SearchcriteriaMap)
if err != nil {
return err
}
if EndValue, ok := SearchcriteriaMap["endValue"].(string); ok {
o.EndValue = &EndValue
}
if Values, ok := SearchcriteriaMap["values"].([]interface{}); ok {
ValuesString, _ := json.Marshal(Values)
json.Unmarshal(ValuesString, &o.Values)
}
if StartValue, ok := SearchcriteriaMap["startValue"].(string); ok {
o.StartValue = &StartValue
}
if Fields, ok := SearchcriteriaMap["fields"].([]interface{}); ok {
FieldsString, _ := json.Marshal(Fields)
json.Unmarshal(FieldsString, &o.Fields)
}
if Value, ok := SearchcriteriaMap["value"].(string); ok {
o.Value = &Value
}
if Operator, ok := SearchcriteriaMap["operator"].(string); ok {
o.Operator = &Operator
}
if Group, ok := SearchcriteriaMap["group"].([]interface{}); ok {
GroupString, _ := json.Marshal(Group)
json.Unmarshal(GroupString, &o.Group)
}
if DateFormat, ok := SearchcriteriaMap["dateFormat"].(string); ok {
o.DateFormat = &DateFormat
}
if VarType, ok := SearchcriteriaMap["type"].(string); ok {
o.VarType = &VarType
}
return nil
}
// String returns a JSON representation of the model
func (o *Searchcriteria) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}