-
Notifications
You must be signed in to change notification settings - Fork 13
/
userscheduleactivity.go
134 lines (92 loc) · 3.57 KB
/
userscheduleactivity.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
package platformclientv2
import (
"time"
"github.com/leekchan/timeutil"
"encoding/json"
"strconv"
"strings"
)
// Userscheduleactivity - Represents a single activity in a user's shift
type Userscheduleactivity struct {
// ActivityCodeId - The id for the activity code. Look up a map of activity codes with the activities route
ActivityCodeId *string `json:"activityCodeId,omitempty"`
// StartDate - Start time in UTC for this activity, in ISO-8601 format
StartDate *time.Time `json:"startDate,omitempty"`
// LengthInMinutes - Length in minutes for this activity
LengthInMinutes *int `json:"lengthInMinutes,omitempty"`
// Description - Description for this activity
Description *string `json:"description,omitempty"`
// CountsAsPaidTime - Whether this activity is paid
CountsAsPaidTime *bool `json:"countsAsPaidTime,omitempty"`
// IsDstFallback - Whether this activity spans a DST fallback
IsDstFallback *bool `json:"isDstFallback,omitempty"`
// TimeOffRequestId - Time off request id of this activity
TimeOffRequestId *string `json:"timeOffRequestId,omitempty"`
}
func (o *Userscheduleactivity) MarshalJSON() ([]byte, error) {
// Redundant initialization to avoid unused import errors for models with no Time values
_ = timeutil.Timedelta{}
type Alias Userscheduleactivity
StartDate := new(string)
if o.StartDate != nil {
*StartDate = timeutil.Strftime(o.StartDate, "%Y-%m-%dT%H:%M:%S.%fZ")
} else {
StartDate = nil
}
return json.Marshal(&struct {
ActivityCodeId *string `json:"activityCodeId,omitempty"`
StartDate *string `json:"startDate,omitempty"`
LengthInMinutes *int `json:"lengthInMinutes,omitempty"`
Description *string `json:"description,omitempty"`
CountsAsPaidTime *bool `json:"countsAsPaidTime,omitempty"`
IsDstFallback *bool `json:"isDstFallback,omitempty"`
TimeOffRequestId *string `json:"timeOffRequestId,omitempty"`
*Alias
}{
ActivityCodeId: o.ActivityCodeId,
StartDate: StartDate,
LengthInMinutes: o.LengthInMinutes,
Description: o.Description,
CountsAsPaidTime: o.CountsAsPaidTime,
IsDstFallback: o.IsDstFallback,
TimeOffRequestId: o.TimeOffRequestId,
Alias: (*Alias)(o),
})
}
func (o *Userscheduleactivity) UnmarshalJSON(b []byte) error {
var UserscheduleactivityMap map[string]interface{}
err := json.Unmarshal(b, &UserscheduleactivityMap)
if err != nil {
return err
}
if ActivityCodeId, ok := UserscheduleactivityMap["activityCodeId"].(string); ok {
o.ActivityCodeId = &ActivityCodeId
}
if startDateString, ok := UserscheduleactivityMap["startDate"].(string); ok {
StartDate, _ := time.Parse("2006-01-02T15:04:05.999999Z", startDateString)
o.StartDate = &StartDate
}
if LengthInMinutes, ok := UserscheduleactivityMap["lengthInMinutes"].(float64); ok {
LengthInMinutesInt := int(LengthInMinutes)
o.LengthInMinutes = &LengthInMinutesInt
}
if Description, ok := UserscheduleactivityMap["description"].(string); ok {
o.Description = &Description
}
if CountsAsPaidTime, ok := UserscheduleactivityMap["countsAsPaidTime"].(bool); ok {
o.CountsAsPaidTime = &CountsAsPaidTime
}
if IsDstFallback, ok := UserscheduleactivityMap["isDstFallback"].(bool); ok {
o.IsDstFallback = &IsDstFallback
}
if TimeOffRequestId, ok := UserscheduleactivityMap["timeOffRequestId"].(string); ok {
o.TimeOffRequestId = &TimeOffRequestId
}
return nil
}
// String returns a JSON representation of the model
func (o *Userscheduleactivity) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}