blob: bc727be67caac50ae852bdc0c0d2f2794c835549 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// TimeOffRequestObject undocumented
type TimeOffRequestObject struct {
// ScheduleChangeRequestObject is the base model of TimeOffRequestObject
ScheduleChangeRequestObject
// StartDateTime undocumented
StartDateTime *time.Time `json:"startDateTime,omitempty"`
// EndDateTime undocumented
EndDateTime *time.Time `json:"endDateTime,omitempty"`
// TimeOffReasonID undocumented
TimeOffReasonID *string `json:"timeOffReasonId,omitempty"`
}
|