-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathmodel_issues_search_request_data_attributes.go
More file actions
360 lines (317 loc) · 11.7 KB
/
model_issues_search_request_data_attributes.go
File metadata and controls
360 lines (317 loc) · 11.7 KB
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
// 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.
package datadogV2
import (
"fmt"
"github.com/google/uuid"
"github.com/DataDog/datadog-api-client-go/v2/api/datadog"
)
// IssuesSearchRequestDataAttributes Object describing a search issue request.
type IssuesSearchRequestDataAttributes struct {
// Filter issues by assignee IDs. Multiple values are combined with OR logic.
AssigneeIds []uuid.UUID `json:"assignee_ids,omitempty"`
// Start date (inclusive) of the query in milliseconds since the Unix epoch.
From int64 `json:"from"`
// The attribute to sort the search results by.
OrderBy *IssuesSearchRequestDataAttributesOrderBy `json:"order_by,omitempty"`
// Persona for the search. Either track(s) or persona(s) must be specified.
Persona *IssuesSearchRequestDataAttributesPersona `json:"persona,omitempty"`
// Search query following the event search syntax.
Query string `json:"query"`
// Filter issues by team IDs. Multiple values are combined with OR logic.
TeamIds []uuid.UUID `json:"team_ids,omitempty"`
// End date (exclusive) of the query in milliseconds since the Unix epoch.
To int64 `json:"to"`
// Track of the events to query. Either track(s) or persona(s) must be specified.
Track *IssuesSearchRequestDataAttributesTrack `json:"track,omitempty"`
// UnparsedObject contains the raw value of the object if there was an error when deserializing into the struct
UnparsedObject map[string]interface{} `json:"-"`
AdditionalProperties map[string]interface{} `json:"-"`
}
// NewIssuesSearchRequestDataAttributes instantiates a new IssuesSearchRequestDataAttributes object.
// This constructor will assign default values to properties that have it defined,
// and makes sure properties required by API are set, but the set of arguments
// will change when the set of required properties is changed.
func NewIssuesSearchRequestDataAttributes(from int64, query string, to int64) *IssuesSearchRequestDataAttributes {
this := IssuesSearchRequestDataAttributes{}
this.From = from
this.Query = query
this.To = to
return &this
}
// NewIssuesSearchRequestDataAttributesWithDefaults instantiates a new IssuesSearchRequestDataAttributes object.
// This constructor will only assign default values to properties that have it defined,
// but it doesn't guarantee that properties required by API are set.
func NewIssuesSearchRequestDataAttributesWithDefaults() *IssuesSearchRequestDataAttributes {
this := IssuesSearchRequestDataAttributes{}
return &this
}
// GetAssigneeIds returns the AssigneeIds field value if set, zero value otherwise.
func (o *IssuesSearchRequestDataAttributes) GetAssigneeIds() []uuid.UUID {
if o == nil || o.AssigneeIds == nil {
var ret []uuid.UUID
return ret
}
return o.AssigneeIds
}
// GetAssigneeIdsOk returns a tuple with the AssigneeIds field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *IssuesSearchRequestDataAttributes) GetAssigneeIdsOk() (*[]uuid.UUID, bool) {
if o == nil || o.AssigneeIds == nil {
return nil, false
}
return &o.AssigneeIds, true
}
// HasAssigneeIds returns a boolean if a field has been set.
func (o *IssuesSearchRequestDataAttributes) HasAssigneeIds() bool {
return o != nil && o.AssigneeIds != nil
}
// SetAssigneeIds gets a reference to the given []uuid.UUID and assigns it to the AssigneeIds field.
func (o *IssuesSearchRequestDataAttributes) SetAssigneeIds(v []uuid.UUID) {
o.AssigneeIds = v
}
// GetFrom returns the From field value.
func (o *IssuesSearchRequestDataAttributes) GetFrom() int64 {
if o == nil {
var ret int64
return ret
}
return o.From
}
// GetFromOk returns a tuple with the From field value
// and a boolean to check if the value has been set.
func (o *IssuesSearchRequestDataAttributes) GetFromOk() (*int64, bool) {
if o == nil {
return nil, false
}
return &o.From, true
}
// SetFrom sets field value.
func (o *IssuesSearchRequestDataAttributes) SetFrom(v int64) {
o.From = v
}
// GetOrderBy returns the OrderBy field value if set, zero value otherwise.
func (o *IssuesSearchRequestDataAttributes) GetOrderBy() IssuesSearchRequestDataAttributesOrderBy {
if o == nil || o.OrderBy == nil {
var ret IssuesSearchRequestDataAttributesOrderBy
return ret
}
return *o.OrderBy
}
// GetOrderByOk returns a tuple with the OrderBy field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *IssuesSearchRequestDataAttributes) GetOrderByOk() (*IssuesSearchRequestDataAttributesOrderBy, bool) {
if o == nil || o.OrderBy == nil {
return nil, false
}
return o.OrderBy, true
}
// HasOrderBy returns a boolean if a field has been set.
func (o *IssuesSearchRequestDataAttributes) HasOrderBy() bool {
return o != nil && o.OrderBy != nil
}
// SetOrderBy gets a reference to the given IssuesSearchRequestDataAttributesOrderBy and assigns it to the OrderBy field.
func (o *IssuesSearchRequestDataAttributes) SetOrderBy(v IssuesSearchRequestDataAttributesOrderBy) {
o.OrderBy = &v
}
// GetPersona returns the Persona field value if set, zero value otherwise.
func (o *IssuesSearchRequestDataAttributes) GetPersona() IssuesSearchRequestDataAttributesPersona {
if o == nil || o.Persona == nil {
var ret IssuesSearchRequestDataAttributesPersona
return ret
}
return *o.Persona
}
// GetPersonaOk returns a tuple with the Persona field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *IssuesSearchRequestDataAttributes) GetPersonaOk() (*IssuesSearchRequestDataAttributesPersona, bool) {
if o == nil || o.Persona == nil {
return nil, false
}
return o.Persona, true
}
// HasPersona returns a boolean if a field has been set.
func (o *IssuesSearchRequestDataAttributes) HasPersona() bool {
return o != nil && o.Persona != nil
}
// SetPersona gets a reference to the given IssuesSearchRequestDataAttributesPersona and assigns it to the Persona field.
func (o *IssuesSearchRequestDataAttributes) SetPersona(v IssuesSearchRequestDataAttributesPersona) {
o.Persona = &v
}
// GetQuery returns the Query field value.
func (o *IssuesSearchRequestDataAttributes) GetQuery() string {
if o == nil {
var ret string
return ret
}
return o.Query
}
// GetQueryOk returns a tuple with the Query field value
// and a boolean to check if the value has been set.
func (o *IssuesSearchRequestDataAttributes) GetQueryOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Query, true
}
// SetQuery sets field value.
func (o *IssuesSearchRequestDataAttributes) SetQuery(v string) {
o.Query = v
}
// GetTeamIds returns the TeamIds field value if set, zero value otherwise.
func (o *IssuesSearchRequestDataAttributes) GetTeamIds() []uuid.UUID {
if o == nil || o.TeamIds == nil {
var ret []uuid.UUID
return ret
}
return o.TeamIds
}
// GetTeamIdsOk returns a tuple with the TeamIds field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *IssuesSearchRequestDataAttributes) GetTeamIdsOk() (*[]uuid.UUID, bool) {
if o == nil || o.TeamIds == nil {
return nil, false
}
return &o.TeamIds, true
}
// HasTeamIds returns a boolean if a field has been set.
func (o *IssuesSearchRequestDataAttributes) HasTeamIds() bool {
return o != nil && o.TeamIds != nil
}
// SetTeamIds gets a reference to the given []uuid.UUID and assigns it to the TeamIds field.
func (o *IssuesSearchRequestDataAttributes) SetTeamIds(v []uuid.UUID) {
o.TeamIds = v
}
// GetTo returns the To field value.
func (o *IssuesSearchRequestDataAttributes) GetTo() int64 {
if o == nil {
var ret int64
return ret
}
return o.To
}
// GetToOk returns a tuple with the To field value
// and a boolean to check if the value has been set.
func (o *IssuesSearchRequestDataAttributes) GetToOk() (*int64, bool) {
if o == nil {
return nil, false
}
return &o.To, true
}
// SetTo sets field value.
func (o *IssuesSearchRequestDataAttributes) SetTo(v int64) {
o.To = v
}
// GetTrack returns the Track field value if set, zero value otherwise.
func (o *IssuesSearchRequestDataAttributes) GetTrack() IssuesSearchRequestDataAttributesTrack {
if o == nil || o.Track == nil {
var ret IssuesSearchRequestDataAttributesTrack
return ret
}
return *o.Track
}
// GetTrackOk returns a tuple with the Track field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *IssuesSearchRequestDataAttributes) GetTrackOk() (*IssuesSearchRequestDataAttributesTrack, bool) {
if o == nil || o.Track == nil {
return nil, false
}
return o.Track, true
}
// HasTrack returns a boolean if a field has been set.
func (o *IssuesSearchRequestDataAttributes) HasTrack() bool {
return o != nil && o.Track != nil
}
// SetTrack gets a reference to the given IssuesSearchRequestDataAttributesTrack and assigns it to the Track field.
func (o *IssuesSearchRequestDataAttributes) SetTrack(v IssuesSearchRequestDataAttributesTrack) {
o.Track = &v
}
// MarshalJSON serializes the struct using spec logic.
func (o IssuesSearchRequestDataAttributes) MarshalJSON() ([]byte, error) {
toSerialize := map[string]interface{}{}
if o.UnparsedObject != nil {
return datadog.Marshal(o.UnparsedObject)
}
if o.AssigneeIds != nil {
toSerialize["assignee_ids"] = o.AssigneeIds
}
toSerialize["from"] = o.From
if o.OrderBy != nil {
toSerialize["order_by"] = o.OrderBy
}
if o.Persona != nil {
toSerialize["persona"] = o.Persona
}
toSerialize["query"] = o.Query
if o.TeamIds != nil {
toSerialize["team_ids"] = o.TeamIds
}
toSerialize["to"] = o.To
if o.Track != nil {
toSerialize["track"] = o.Track
}
for key, value := range o.AdditionalProperties {
toSerialize[key] = value
}
return datadog.Marshal(toSerialize)
}
// UnmarshalJSON deserializes the given payload.
func (o *IssuesSearchRequestDataAttributes) UnmarshalJSON(bytes []byte) (err error) {
all := struct {
AssigneeIds []uuid.UUID `json:"assignee_ids,omitempty"`
From *int64 `json:"from"`
OrderBy *IssuesSearchRequestDataAttributesOrderBy `json:"order_by,omitempty"`
Persona *IssuesSearchRequestDataAttributesPersona `json:"persona,omitempty"`
Query *string `json:"query"`
TeamIds []uuid.UUID `json:"team_ids,omitempty"`
To *int64 `json:"to"`
Track *IssuesSearchRequestDataAttributesTrack `json:"track,omitempty"`
}{}
if err = datadog.Unmarshal(bytes, &all); err != nil {
return datadog.Unmarshal(bytes, &o.UnparsedObject)
}
if all.From == nil {
return fmt.Errorf("required field from missing")
}
if all.Query == nil {
return fmt.Errorf("required field query missing")
}
if all.To == nil {
return fmt.Errorf("required field to missing")
}
additionalProperties := make(map[string]interface{})
if err = datadog.Unmarshal(bytes, &additionalProperties); err == nil {
datadog.DeleteKeys(additionalProperties, &[]string{"assignee_ids", "from", "order_by", "persona", "query", "team_ids", "to", "track"})
} else {
return err
}
hasInvalidField := false
o.AssigneeIds = all.AssigneeIds
o.From = *all.From
if all.OrderBy != nil && !all.OrderBy.IsValid() {
hasInvalidField = true
} else {
o.OrderBy = all.OrderBy
}
if all.Persona != nil && !all.Persona.IsValid() {
hasInvalidField = true
} else {
o.Persona = all.Persona
}
o.Query = *all.Query
o.TeamIds = all.TeamIds
o.To = *all.To
if all.Track != nil && !all.Track.IsValid() {
hasInvalidField = true
} else {
o.Track = all.Track
}
if len(additionalProperties) > 0 {
o.AdditionalProperties = additionalProperties
}
if hasInvalidField {
return datadog.Unmarshal(bytes, &o.UnparsedObject)
}
return nil
}