blob: 9936f216ec0952879de829fb142de1a69f753c9e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// EducationPowerSchoolDataProvider undocumented
type EducationPowerSchoolDataProvider struct {
// EducationSynchronizationDataProvider is the base model of EducationPowerSchoolDataProvider
EducationSynchronizationDataProvider
// ConnectionURL undocumented
ConnectionURL *string `json:"connectionUrl,omitempty"`
// ClientID undocumented
ClientID *string `json:"clientId,omitempty"`
// ClientSecret undocumented
ClientSecret *string `json:"clientSecret,omitempty"`
// SchoolsIDs undocumented
SchoolsIDs []string `json:"schoolsIds,omitempty"`
// SchoolYear undocumented
SchoolYear *string `json:"schoolYear,omitempty"`
// AllowTeachersInMultipleSchools undocumented
AllowTeachersInMultipleSchools *bool `json:"allowTeachersInMultipleSchools,omitempty"`
// Customizations undocumented
Customizations *EducationSynchronizationCustomizations `json:"customizations,omitempty"`
}
|