-
Notifications
You must be signed in to change notification settings - Fork 46
/
model_bookmarkproperties.go
89 lines (75 loc) · 3.07 KB
/
model_bookmarkproperties.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
package bookmarks
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 BookmarkProperties struct {
Created *string `json:"created,omitempty"`
CreatedBy *UserInfo `json:"createdBy,omitempty"`
DisplayName string `json:"displayName"`
EntityMappings *[]BookmarkEntityMappings `json:"entityMappings,omitempty"`
EventTime *string `json:"eventTime,omitempty"`
IncidentInfo *IncidentInfo `json:"incidentInfo,omitempty"`
Labels *[]string `json:"labels,omitempty"`
Notes *string `json:"notes,omitempty"`
Query string `json:"query"`
QueryEndTime *string `json:"queryEndTime,omitempty"`
QueryResult *string `json:"queryResult,omitempty"`
QueryStartTime *string `json:"queryStartTime,omitempty"`
Tactics *[]AttackTactic `json:"tactics,omitempty"`
Techniques *[]string `json:"techniques,omitempty"`
Updated *string `json:"updated,omitempty"`
UpdatedBy *UserInfo `json:"updatedBy,omitempty"`
}
func (o *BookmarkProperties) GetCreatedAsTime() (*time.Time, error) {
if o.Created == nil {
return nil, nil
}
return dates.ParseAsFormat(o.Created, "2006-01-02T15:04:05Z07:00")
}
func (o *BookmarkProperties) SetCreatedAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.Created = &formatted
}
func (o *BookmarkProperties) GetEventTimeAsTime() (*time.Time, error) {
if o.EventTime == nil {
return nil, nil
}
return dates.ParseAsFormat(o.EventTime, "2006-01-02T15:04:05Z07:00")
}
func (o *BookmarkProperties) SetEventTimeAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.EventTime = &formatted
}
func (o *BookmarkProperties) GetQueryEndTimeAsTime() (*time.Time, error) {
if o.QueryEndTime == nil {
return nil, nil
}
return dates.ParseAsFormat(o.QueryEndTime, "2006-01-02T15:04:05Z07:00")
}
func (o *BookmarkProperties) SetQueryEndTimeAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.QueryEndTime = &formatted
}
func (o *BookmarkProperties) GetQueryStartTimeAsTime() (*time.Time, error) {
if o.QueryStartTime == nil {
return nil, nil
}
return dates.ParseAsFormat(o.QueryStartTime, "2006-01-02T15:04:05Z07:00")
}
func (o *BookmarkProperties) SetQueryStartTimeAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.QueryStartTime = &formatted
}
func (o *BookmarkProperties) GetUpdatedAsTime() (*time.Time, error) {
if o.Updated == nil {
return nil, nil
}
return dates.ParseAsFormat(o.Updated, "2006-01-02T15:04:05Z07:00")
}
func (o *BookmarkProperties) SetUpdatedAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.Updated = &formatted
}