-
Notifications
You must be signed in to change notification settings - Fork 13
/
bureschedulerequest.go
54 lines (34 loc) · 2.11 KB
/
bureschedulerequest.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
package platformclientv2
import (
"time"
"encoding/json"
"strconv"
"strings"
)
// Bureschedulerequest
type Bureschedulerequest struct {
// StartDate - The start of the range to reschedule. Defaults to the beginning of the schedule. 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 range to reschedule. Defaults the the end of the schedule. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z
EndDate *time.Time `json:"endDate,omitempty"`
// AgentIds - The IDs of the agents to consider for rescheduling. Omit to consider all agents in the specified management units.Agents not in the specified management units will be ignored
AgentIds *[]string `json:"agentIds,omitempty"`
// ActivityCodeIds - The IDs of the activity codes to consider for rescheduling. Omit to consider all activity codes
ActivityCodeIds *[]string `json:"activityCodeIds,omitempty"`
// ManagementUnitIds - The IDs of the management units to reschedule
ManagementUnitIds *[]string `json:"managementUnitIds,omitempty"`
// DoNotChangeWeeklyPaidTime - Instructs the scheduler whether it is allowed to change weekly paid time
DoNotChangeWeeklyPaidTime *bool `json:"doNotChangeWeeklyPaidTime,omitempty"`
// DoNotChangeDailyPaidTime - Instructs the scheduler whether it is allowed to change daily paid time
DoNotChangeDailyPaidTime *bool `json:"doNotChangeDailyPaidTime,omitempty"`
// DoNotChangeShiftStartTimes - Instructs the scheduler whether it is allowed to change shift start times
DoNotChangeShiftStartTimes *bool `json:"doNotChangeShiftStartTimes,omitempty"`
// DoNotChangeManuallyEditedShifts - Instructs the scheduler whether it is allowed to change manually edited shifts
DoNotChangeManuallyEditedShifts *bool `json:"doNotChangeManuallyEditedShifts,omitempty"`
}
// String returns a JSON representation of the model
func (o *Bureschedulerequest) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}