forked from MyPureCloud/platform-client-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
timeoffplan.go
151 lines (101 loc) · 3.94 KB
/
timeoffplan.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
package platformclientv2
import (
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Timeoffplan
type Timeoffplan struct {
// Id - The globally unique identifier for the object.
Id *string `json:"id"`
// Name - The name of this time off plan.
Name *string `json:"name"`
// ActivityCodeIds - The set of activity code IDs associated with this time off plan.
ActivityCodeIds *[]string `json:"activityCodeIds"`
// TimeOffLimits - The set of time off limit IDs associated with this time off plan.
TimeOffLimits *[]Timeofflimitreference `json:"timeOffLimits"`
// AutoApprovalRule - Auto approval rule for this time off plan
AutoApprovalRule *string `json:"autoApprovalRule"`
// DaysBeforeStartToExpireFromWaitlist - The number of days before the time off request start date for when the request will be expired from the waitlist.
DaysBeforeStartToExpireFromWaitlist *int `json:"daysBeforeStartToExpireFromWaitlist"`
// Active - Whether this time off plan is currently being used by agents.
Active *bool `json:"active"`
// Metadata - Version metadata for the time off plan.
Metadata *Wfmversionedentitymetadata `json:"metadata"`
// SelfUri - The URI for this object
SelfUri *string `json:"selfUri"`
}
func (o *Timeoffplan) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Timeoffplan
return json.Marshal(&struct {
Id *string `json:"id"`
Name *string `json:"name"`
ActivityCodeIds *[]string `json:"activityCodeIds"`
TimeOffLimits *[]Timeofflimitreference `json:"timeOffLimits"`
AutoApprovalRule *string `json:"autoApprovalRule"`
DaysBeforeStartToExpireFromWaitlist *int `json:"daysBeforeStartToExpireFromWaitlist"`
Active *bool `json:"active"`
Metadata *Wfmversionedentitymetadata `json:"metadata"`
SelfUri *string `json:"selfUri"`
*Alias
}{
Id: o.Id,
Name: o.Name,
ActivityCodeIds: o.ActivityCodeIds,
TimeOffLimits: o.TimeOffLimits,
AutoApprovalRule: o.AutoApprovalRule,
DaysBeforeStartToExpireFromWaitlist: o.DaysBeforeStartToExpireFromWaitlist,
Active: o.Active,
Metadata: o.Metadata,
SelfUri: o.SelfUri,
Alias: (*Alias)(o),
})
}
func (o *Timeoffplan) UnmarshalJSON(b []byte) error {
var TimeoffplanMap map[string]interface{}
err := json.Unmarshal(b, &TimeoffplanMap)
if err != nil {
return err
}
if Id, ok := TimeoffplanMap["id"].(string); ok {
o.Id = &Id
}
if Name, ok := TimeoffplanMap["name"].(string); ok {
o.Name = &Name
}
if ActivityCodeIds, ok := TimeoffplanMap["activityCodeIds"].([]interface{}); ok {
ActivityCodeIdsString, _ := json.Marshal(ActivityCodeIds)
json.Unmarshal(ActivityCodeIdsString, &o.ActivityCodeIds)
}
if TimeOffLimits, ok := TimeoffplanMap["timeOffLimits"].([]interface{}); ok {
TimeOffLimitsString, _ := json.Marshal(TimeOffLimits)
json.Unmarshal(TimeOffLimitsString, &o.TimeOffLimits)
}
if AutoApprovalRule, ok := TimeoffplanMap["autoApprovalRule"].(string); ok {
o.AutoApprovalRule = &AutoApprovalRule
}
if DaysBeforeStartToExpireFromWaitlist, ok := TimeoffplanMap["daysBeforeStartToExpireFromWaitlist"].(float64); ok {
DaysBeforeStartToExpireFromWaitlistInt := int(DaysBeforeStartToExpireFromWaitlist)
o.DaysBeforeStartToExpireFromWaitlist = &DaysBeforeStartToExpireFromWaitlistInt
}
if Active, ok := TimeoffplanMap["active"].(bool); ok {
o.Active = &Active
}
if Metadata, ok := TimeoffplanMap["metadata"].(map[string]interface{}); ok {
MetadataString, _ := json.Marshal(Metadata)
json.Unmarshal(MetadataString, &o.Metadata)
}
if SelfUri, ok := TimeoffplanMap["selfUri"].(string); ok {
o.SelfUri = &SelfUri
}
return nil
}
// String returns a JSON representation of the model
func (o *Timeoffplan) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}