forked from MyPureCloud/platform-client-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
auditqueryexecutionstatusresponse.go
135 lines (93 loc) · 3.35 KB
/
auditqueryexecutionstatusresponse.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
package platformclientv2
import (
"time"
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Auditqueryexecutionstatusresponse
type Auditqueryexecutionstatusresponse struct {
// Id - Id of the audit query execution request.
Id *string `json:"id"`
// State - Status of the audit query execution request.
State *string `json:"state"`
// StartDate - Start date and time of the audit query execution. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
StartDate *time.Time `json:"startDate"`
// Interval - Interval for the audit query. Intervals are represented as an ISO-8601 string. For example: YYYY-MM-DDThh:mm:ss/YYYY-MM-DDThh:mm:ss
Interval *string `json:"interval"`
// ServiceName - Service name for the audit query.
ServiceName *string `json:"serviceName"`
// Filters - Filters for the audit query.
Filters *[]Auditqueryfilter `json:"filters"`
// Sort - Sort parameter for the audit query.
Sort *[]Auditquerysort `json:"sort"`
}
func (o *Auditqueryexecutionstatusresponse) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Auditqueryexecutionstatusresponse
StartDate := new(string)
if o.StartDate != nil {
*StartDate = timeutil.Strftime(o.StartDate, "%Y-%m-%dT%H:%M:%S.%fZ")
} else {
StartDate = nil
}
return json.Marshal(&struct {
Id *string `json:"id"`
State *string `json:"state"`
StartDate *string `json:"startDate"`
Interval *string `json:"interval"`
ServiceName *string `json:"serviceName"`
Filters *[]Auditqueryfilter `json:"filters"`
Sort *[]Auditquerysort `json:"sort"`
*Alias
}{
Id: o.Id,
State: o.State,
StartDate: StartDate,
Interval: o.Interval,
ServiceName: o.ServiceName,
Filters: o.Filters,
Sort: o.Sort,
Alias: (*Alias)(o),
})
}
func (o *Auditqueryexecutionstatusresponse) UnmarshalJSON(b []byte) error {
var AuditqueryexecutionstatusresponseMap map[string]interface{}
err := json.Unmarshal(b, &AuditqueryexecutionstatusresponseMap)
if err != nil {
return err
}
if Id, ok := AuditqueryexecutionstatusresponseMap["id"].(string); ok {
o.Id = &Id
}
if State, ok := AuditqueryexecutionstatusresponseMap["state"].(string); ok {
o.State = &State
}
if startDateString, ok := AuditqueryexecutionstatusresponseMap["startDate"].(string); ok {
StartDate, _ := time.Parse("2006-01-02T15:04:05.999999Z", startDateString)
o.StartDate = &StartDate
}
if Interval, ok := AuditqueryexecutionstatusresponseMap["interval"].(string); ok {
o.Interval = &Interval
}
if ServiceName, ok := AuditqueryexecutionstatusresponseMap["serviceName"].(string); ok {
o.ServiceName = &ServiceName
}
if Filters, ok := AuditqueryexecutionstatusresponseMap["filters"].([]interface{}); ok {
FiltersString, _ := json.Marshal(Filters)
json.Unmarshal(FiltersString, &o.Filters)
}
if Sort, ok := AuditqueryexecutionstatusresponseMap["sort"].([]interface{}); ok {
SortString, _ := json.Marshal(Sort)
json.Unmarshal(SortString, &o.Sort)
}
return nil
}
// String returns a JSON representation of the model
func (o *Auditqueryexecutionstatusresponse) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}