-
Notifications
You must be signed in to change notification settings - Fork 13
/
bucurrentagentschedulesearchresponse.go
42 lines (28 loc) · 1.5 KB
/
bucurrentagentschedulesearchresponse.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
package platformclientv2
import (
"time"
"encoding/json"
"strconv"
"strings"
)
// Bucurrentagentschedulesearchresponse
type Bucurrentagentschedulesearchresponse struct {
// AgentSchedules - The requested agent schedules
AgentSchedules *[]Buagentschedulesearchresponse `json:"agentSchedules,omitempty"`
// BusinessUnitTimeZone - The time zone configured for the business unit to which this schedule applies
BusinessUnitTimeZone *string `json:"businessUnitTimeZone,omitempty"`
// PublishedSchedules - References to all published week schedules overlapping the start/end date query parameters
PublishedSchedules *[]Buagentschedulepublishedschedulereference `json:"publishedSchedules,omitempty"`
// StartDate - The start date of the schedules. Only populated on 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 date of the schedules. Only populated on 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"`
// Updates - The list of updates for the schedule. Only used in notifications
Updates *[]Buagentscheduleupdate `json:"updates,omitempty"`
}
// String returns a JSON representation of the model
func (o *Bucurrentagentschedulesearchresponse) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}