-
Notifications
You must be signed in to change notification settings - Fork 13
/
bumanagementunitschedulesummary.go
121 lines (87 loc) · 3.7 KB
/
bumanagementunitschedulesummary.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
package platformclientv2
import (
"time"
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Bumanagementunitschedulesummary
type Bumanagementunitschedulesummary struct {
// ManagementUnit - The management unit to which this summary applies
ManagementUnit *Managementunitreference `json:"managementUnit,omitempty"`
// AgentCount - The number of agents from this management unit that are in the schedule
AgentCount *int `json:"agentCount,omitempty"`
// StartDate - The start of the schedule change in the management unit. Only populated in schedule update notifications. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
StartDate *time.Time `json:"startDate,omitempty"`
// EndDate - The end of the schedule change in the management unit. Only populated in schedule update notifications. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
EndDate *time.Time `json:"endDate,omitempty"`
// Agents - The agents in the management unit who are part of this schedule, or in schedule change notifications, the agents that were changed. Note this will come back as an empty list unless the appropriate expand query parameter is passed
Agents *[]Userreference `json:"agents,omitempty"`
}
func (o *Bumanagementunitschedulesummary) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Bumanagementunitschedulesummary
StartDate := new(string)
if o.StartDate != nil {
*StartDate = timeutil.Strftime(o.StartDate, "%Y-%m-%dT%H:%M:%S.%fZ")
} else {
StartDate = nil
}
EndDate := new(string)
if o.EndDate != nil {
*EndDate = timeutil.Strftime(o.EndDate, "%Y-%m-%dT%H:%M:%S.%fZ")
} else {
EndDate = nil
}
return json.Marshal(&struct {
ManagementUnit *Managementunitreference `json:"managementUnit,omitempty"`
AgentCount *int `json:"agentCount,omitempty"`
StartDate *string `json:"startDate,omitempty"`
EndDate *string `json:"endDate,omitempty"`
Agents *[]Userreference `json:"agents,omitempty"`
*Alias
}{
ManagementUnit: o.ManagementUnit,
AgentCount: o.AgentCount,
StartDate: StartDate,
EndDate: EndDate,
Agents: o.Agents,
Alias: (*Alias)(o),
})
}
func (o *Bumanagementunitschedulesummary) UnmarshalJSON(b []byte) error {
var BumanagementunitschedulesummaryMap map[string]interface{}
err := json.Unmarshal(b, &BumanagementunitschedulesummaryMap)
if err != nil {
return err
}
if ManagementUnit, ok := BumanagementunitschedulesummaryMap["managementUnit"].(map[string]interface{}); ok {
ManagementUnitString, _ := json.Marshal(ManagementUnit)
json.Unmarshal(ManagementUnitString, &o.ManagementUnit)
}
if AgentCount, ok := BumanagementunitschedulesummaryMap["agentCount"].(float64); ok {
AgentCountInt := int(AgentCount)
o.AgentCount = &AgentCountInt
}
if startDateString, ok := BumanagementunitschedulesummaryMap["startDate"].(string); ok {
StartDate, _ := time.Parse("2006-01-02T15:04:05.999999Z", startDateString)
o.StartDate = &StartDate
}
if endDateString, ok := BumanagementunitschedulesummaryMap["endDate"].(string); ok {
EndDate, _ := time.Parse("2006-01-02T15:04:05.999999Z", endDateString)
o.EndDate = &EndDate
}
if Agents, ok := BumanagementunitschedulesummaryMap["agents"].([]interface{}); ok {
AgentsString, _ := json.Marshal(Agents)
json.Unmarshal(AgentsString, &o.Agents)
}
return nil
}
// String returns a JSON representation of the model
func (o *Bumanagementunitschedulesummary) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}