-
Notifications
You must be signed in to change notification settings - Fork 13
/
userlistschedulerequestbody.go
107 lines (78 loc) · 2.87 KB
/
userlistschedulerequestbody.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
package platformclientv2
import (
"time"
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Userlistschedulerequestbody - Request body for fetching the schedule for a group of users over a given time range
type Userlistschedulerequestbody struct {
// UserIds - The user ids for which to fetch schedules
UserIds *[]string `json:"userIds,omitempty"`
// StartDate - Beginning of the range of schedules to fetch, in ISO-8601 format
StartDate *time.Time `json:"startDate,omitempty"`
// EndDate - End of the range of schedules to fetch, in ISO-8601 format
EndDate *time.Time `json:"endDate,omitempty"`
// LoadFullWeeks - Whether to load the full week's schedule (for the requested users) of any week overlapping the start/end date query parameters, defaults to false
LoadFullWeeks *bool `json:"loadFullWeeks,omitempty"`
}
func (o *Userlistschedulerequestbody) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Userlistschedulerequestbody
StartDate := new(string)
if o.StartDate != nil {
*StartDate = timeutil.Strftime(o.StartDate, "%Y-%m-%dT%H:%M:%S.%fZ")
} else {
StartDate = nil
}
EndDate := new(string)
if o.EndDate != nil {
*EndDate = timeutil.Strftime(o.EndDate, "%Y-%m-%dT%H:%M:%S.%fZ")
} else {
EndDate = nil
}
return json.Marshal(&struct {
UserIds *[]string `json:"userIds,omitempty"`
StartDate *string `json:"startDate,omitempty"`
EndDate *string `json:"endDate,omitempty"`
LoadFullWeeks *bool `json:"loadFullWeeks,omitempty"`
*Alias
}{
UserIds: o.UserIds,
StartDate: StartDate,
EndDate: EndDate,
LoadFullWeeks: o.LoadFullWeeks,
Alias: (*Alias)(o),
})
}
func (o *Userlistschedulerequestbody) UnmarshalJSON(b []byte) error {
var UserlistschedulerequestbodyMap map[string]interface{}
err := json.Unmarshal(b, &UserlistschedulerequestbodyMap)
if err != nil {
return err
}
if UserIds, ok := UserlistschedulerequestbodyMap["userIds"].([]interface{}); ok {
UserIdsString, _ := json.Marshal(UserIds)
json.Unmarshal(UserIdsString, &o.UserIds)
}
if startDateString, ok := UserlistschedulerequestbodyMap["startDate"].(string); ok {
StartDate, _ := time.Parse("2006-01-02T15:04:05.999999Z", startDateString)
o.StartDate = &StartDate
}
if endDateString, ok := UserlistschedulerequestbodyMap["endDate"].(string); ok {
EndDate, _ := time.Parse("2006-01-02T15:04:05.999999Z", endDateString)
o.EndDate = &EndDate
}
if LoadFullWeeks, ok := UserlistschedulerequestbodyMap["loadFullWeeks"].(bool); ok {
o.LoadFullWeeks = &LoadFullWeeks
}
return nil
}
// String returns a JSON representation of the model
func (o *Userlistschedulerequestbody) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}