-
Notifications
You must be signed in to change notification settings - Fork 46
/
model_huntingbookmarkproperties.go
62 lines (52 loc) · 2.17 KB
/
model_huntingbookmarkproperties.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
package incidententities
import (
"time"
"github.com/hashicorp/go-azure-helpers/lang/dates"
)
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
type HuntingBookmarkProperties struct {
AdditionalData *map[string]interface{} `json:"additionalData,omitempty"`
Created *string `json:"created,omitempty"`
CreatedBy *UserInfo `json:"createdBy,omitempty"`
DisplayName string `json:"displayName"`
EventTime *string `json:"eventTime,omitempty"`
FriendlyName *string `json:"friendlyName,omitempty"`
IncidentInfo *IncidentInfo `json:"incidentInfo,omitempty"`
Labels *[]string `json:"labels,omitempty"`
Notes *string `json:"notes,omitempty"`
Query string `json:"query"`
QueryResult *string `json:"queryResult,omitempty"`
Updated *string `json:"updated,omitempty"`
UpdatedBy *UserInfo `json:"updatedBy,omitempty"`
}
func (o *HuntingBookmarkProperties) GetCreatedAsTime() (*time.Time, error) {
if o.Created == nil {
return nil, nil
}
return dates.ParseAsFormat(o.Created, "2006-01-02T15:04:05Z07:00")
}
func (o *HuntingBookmarkProperties) SetCreatedAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.Created = &formatted
}
func (o *HuntingBookmarkProperties) GetEventTimeAsTime() (*time.Time, error) {
if o.EventTime == nil {
return nil, nil
}
return dates.ParseAsFormat(o.EventTime, "2006-01-02T15:04:05Z07:00")
}
func (o *HuntingBookmarkProperties) SetEventTimeAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.EventTime = &formatted
}
func (o *HuntingBookmarkProperties) GetUpdatedAsTime() (*time.Time, error) {
if o.Updated == nil {
return nil, nil
}
return dates.ParseAsFormat(o.Updated, "2006-01-02T15:04:05Z07:00")
}
func (o *HuntingBookmarkProperties) SetUpdatedAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.Updated = &formatted
}