-
Notifications
You must be signed in to change notification settings - Fork 13
/
createtimeoffplanrequest.go
114 lines (79 loc) · 3.44 KB
/
createtimeoffplanrequest.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
package platformclientv2
import (
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Createtimeoffplanrequest
type Createtimeoffplanrequest struct {
// Name - The name of this time off plan.
Name *string `json:"name,omitempty"`
// ActivityCodeIds - The set of activity code IDs to associate with this time off plan.
ActivityCodeIds *[]string `json:"activityCodeIds,omitempty"`
// TimeOffLimitIds - The set of time off limit IDs to associate with this time off plan.
TimeOffLimitIds *[]string `json:"timeOffLimitIds,omitempty"`
// AutoApprovalRule - Auto approval rule for the time off plan.
AutoApprovalRule *string `json:"autoApprovalRule,omitempty"`
// 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,omitempty"`
// Active - Whether this time off plan should be used by agents.
Active *bool `json:"active,omitempty"`
}
func (o *Createtimeoffplanrequest) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Createtimeoffplanrequest
return json.Marshal(&struct {
Name *string `json:"name,omitempty"`
ActivityCodeIds *[]string `json:"activityCodeIds,omitempty"`
TimeOffLimitIds *[]string `json:"timeOffLimitIds,omitempty"`
AutoApprovalRule *string `json:"autoApprovalRule,omitempty"`
DaysBeforeStartToExpireFromWaitlist *int `json:"daysBeforeStartToExpireFromWaitlist,omitempty"`
Active *bool `json:"active,omitempty"`
*Alias
}{
Name: o.Name,
ActivityCodeIds: o.ActivityCodeIds,
TimeOffLimitIds: o.TimeOffLimitIds,
AutoApprovalRule: o.AutoApprovalRule,
DaysBeforeStartToExpireFromWaitlist: o.DaysBeforeStartToExpireFromWaitlist,
Active: o.Active,
Alias: (*Alias)(o),
})
}
func (o *Createtimeoffplanrequest) UnmarshalJSON(b []byte) error {
var CreatetimeoffplanrequestMap map[string]interface{}
err := json.Unmarshal(b, &CreatetimeoffplanrequestMap)
if err != nil {
return err
}
if Name, ok := CreatetimeoffplanrequestMap["name"].(string); ok {
o.Name = &Name
}
if ActivityCodeIds, ok := CreatetimeoffplanrequestMap["activityCodeIds"].([]interface{}); ok {
ActivityCodeIdsString, _ := json.Marshal(ActivityCodeIds)
json.Unmarshal(ActivityCodeIdsString, &o.ActivityCodeIds)
}
if TimeOffLimitIds, ok := CreatetimeoffplanrequestMap["timeOffLimitIds"].([]interface{}); ok {
TimeOffLimitIdsString, _ := json.Marshal(TimeOffLimitIds)
json.Unmarshal(TimeOffLimitIdsString, &o.TimeOffLimitIds)
}
if AutoApprovalRule, ok := CreatetimeoffplanrequestMap["autoApprovalRule"].(string); ok {
o.AutoApprovalRule = &AutoApprovalRule
}
if DaysBeforeStartToExpireFromWaitlist, ok := CreatetimeoffplanrequestMap["daysBeforeStartToExpireFromWaitlist"].(float64); ok {
DaysBeforeStartToExpireFromWaitlistInt := int(DaysBeforeStartToExpireFromWaitlist)
o.DaysBeforeStartToExpireFromWaitlist = &DaysBeforeStartToExpireFromWaitlistInt
}
if Active, ok := CreatetimeoffplanrequestMap["active"].(bool); ok {
o.Active = &Active
}
return nil
}
// String returns a JSON representation of the model
func (o *Createtimeoffplanrequest) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}