-
Notifications
You must be signed in to change notification settings - Fork 13
/
createadmintimeoffrequest.go
46 lines (30 loc) · 1.42 KB
/
createadmintimeoffrequest.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
package platformclientv2
import (
"time"
"encoding/json"
"strconv"
"strings"
)
// Createadmintimeoffrequest
type Createadmintimeoffrequest struct {
// Status - The status of this time off request
Status *string `json:"status,omitempty"`
// Users - A set of IDs for users to associate with this time off request
Users *[]Userreference `json:"users,omitempty"`
// ActivityCodeId - The ID of the activity code associated with this time off request. Activity code must be of the TimeOff category
ActivityCodeId *string `json:"activityCodeId,omitempty"`
// Notes - Notes about the time off request
Notes *string `json:"notes,omitempty"`
// FullDayManagementUnitDates - A set of dates in yyyy-MM-dd format. Should be interpreted in the management unit's configured time zone.
FullDayManagementUnitDates *[]string `json:"fullDayManagementUnitDates,omitempty"`
// PartialDayStartDateTimes - A set of start date-times in ISO-8601 format for partial day requests.
PartialDayStartDateTimes *[]time.Time `json:"partialDayStartDateTimes,omitempty"`
// DailyDurationMinutes - The daily duration of this time off request in minutes
DailyDurationMinutes *int `json:"dailyDurationMinutes,omitempty"`
}
// String returns a JSON representation of the model
func (o *Createadmintimeoffrequest) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}