-
Notifications
You must be signed in to change notification settings - Fork 13
/
wfmuserscheduleadherenceupdatedteamtopicuserscheduleadherenceupdate.go
82 lines (48 loc) · 1.99 KB
/
wfmuserscheduleadherenceupdatedteamtopicuserscheduleadherenceupdate.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
package platformclientv2
import (
"time"
"encoding/json"
"strconv"
"strings"
)
// Wfmuserscheduleadherenceupdatedteamtopicuserscheduleadherenceupdate
type Wfmuserscheduleadherenceupdatedteamtopicuserscheduleadherenceupdate struct {
// User
User *Wfmuserscheduleadherenceupdatedteamtopicuserreference `json:"user,omitempty"`
// ManagementUnitId
ManagementUnitId *string `json:"managementUnitId,omitempty"`
// Team
Team *Wfmuserscheduleadherenceupdatedteamtopicurireference `json:"team,omitempty"`
// ScheduledActivityCategory
ScheduledActivityCategory *string `json:"scheduledActivityCategory,omitempty"`
// SystemPresence
SystemPresence *string `json:"systemPresence,omitempty"`
// OrganizationSecondaryPresenceId
OrganizationSecondaryPresenceId *string `json:"organizationSecondaryPresenceId,omitempty"`
// RoutingStatus
RoutingStatus *string `json:"routingStatus,omitempty"`
// ActualActivityCategory
ActualActivityCategory *string `json:"actualActivityCategory,omitempty"`
// IsOutOfOffice
IsOutOfOffice *bool `json:"isOutOfOffice,omitempty"`
// AdherenceState
AdherenceState *string `json:"adherenceState,omitempty"`
// Impact
Impact *string `json:"impact,omitempty"`
// AdherenceChangeTime
AdherenceChangeTime *time.Time `json:"adherenceChangeTime,omitempty"`
// PresenceUpdateTime
PresenceUpdateTime *time.Time `json:"presenceUpdateTime,omitempty"`
// ActiveQueues
ActiveQueues *[]Wfmuserscheduleadherenceupdatedteamtopicqueuereference `json:"activeQueues,omitempty"`
// ActiveQueuesModifiedTime
ActiveQueuesModifiedTime *time.Time `json:"activeQueuesModifiedTime,omitempty"`
// RemovedFromManagementUnit
RemovedFromManagementUnit *bool `json:"removedFromManagementUnit,omitempty"`
}
// String returns a JSON representation of the model
func (o *Wfmuserscheduleadherenceupdatedteamtopicuserscheduleadherenceupdate) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}