blob: 9e919e481c4464b8c0a0ab284108ce9f3aa7664e (
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
// EducationCourse undocumented
type EducationCourse struct {
// Object is the base model of EducationCourse
Object
// Subject undocumented
Subject *string `json:"subject,omitempty"`
// CourseNumber undocumented
CourseNumber *string `json:"courseNumber,omitempty"`
// Description undocumented
Description *string `json:"description,omitempty"`
// DisplayName undocumented
DisplayName *string `json:"displayName,omitempty"`
// ExternalID undocumented
ExternalID *string `json:"externalId,omitempty"`
}
|