blob: 4c61415c011c41f7a089551bcce526ed12083650 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "time"
// EducationSynchronizationCustomization undocumented
type EducationSynchronizationCustomization struct {
// Object is the base model of EducationSynchronizationCustomization
Object
// OptionalPropertiesToSync undocumented
OptionalPropertiesToSync []string `json:"optionalPropertiesToSync,omitempty"`
// SynchronizationStartDate undocumented
SynchronizationStartDate *time.Time `json:"synchronizationStartDate,omitempty"`
// IsSyncDeferred undocumented
IsSyncDeferred *bool `json:"isSyncDeferred,omitempty"`
// AllowDisplayNameUpdate undocumented
AllowDisplayNameUpdate *bool `json:"allowDisplayNameUpdate,omitempty"`
}
|