diff options
author | Wim <wim@42.be> | 2019-12-26 23:12:28 +0100 |
---|---|---|
committer | Wim <wim@42.be> | 2020-03-01 22:19:33 +0100 |
commit | 795a8705c3fdc5bf55e83d382e7d3ff233896a0b (patch) | |
tree | 46ac43e487102de7ea21a823a7a7902ae9493f88 /vendor/github.com/yaegashi/msgraph.go/beta/EducationUserModel.go | |
parent | 3af0dc3b3a5bfaffe37770c437427f1e99402405 (diff) | |
download | matterbridge-msglm-795a8705c3fdc5bf55e83d382e7d3ff233896a0b.tar.gz matterbridge-msglm-795a8705c3fdc5bf55e83d382e7d3ff233896a0b.tar.bz2 matterbridge-msglm-795a8705c3fdc5bf55e83d382e7d3ff233896a0b.zip |
Add initial Microsoft Teams support
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/EducationUserModel.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/EducationUserModel.go | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EducationUserModel.go b/vendor/github.com/yaegashi/msgraph.go/beta/EducationUserModel.go new file mode 100644 index 00000000..3861876e --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EducationUserModel.go @@ -0,0 +1,85 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +import "time" + +// EducationUser undocumented +type EducationUser struct { + // Entity is the base model of EducationUser + Entity + // RelatedContacts undocumented + RelatedContacts []RelatedContact `json:"relatedContacts,omitempty"` + // PrimaryRole undocumented + PrimaryRole *EducationUserRole `json:"primaryRole,omitempty"` + // MiddleName undocumented + MiddleName *string `json:"middleName,omitempty"` + // ExternalSource undocumented + ExternalSource *EducationExternalSource `json:"externalSource,omitempty"` + // ResidenceAddress undocumented + ResidenceAddress *PhysicalAddress `json:"residenceAddress,omitempty"` + // MailingAddress undocumented + MailingAddress *PhysicalAddress `json:"mailingAddress,omitempty"` + // Student undocumented + Student *EducationStudent `json:"student,omitempty"` + // Teacher undocumented + Teacher *EducationTeacher `json:"teacher,omitempty"` + // CreatedBy undocumented + CreatedBy *IdentitySet `json:"createdBy,omitempty"` + // AccountEnabled undocumented + AccountEnabled *bool `json:"accountEnabled,omitempty"` + // AssignedLicenses undocumented + AssignedLicenses []AssignedLicense `json:"assignedLicenses,omitempty"` + // AssignedPlans undocumented + AssignedPlans []AssignedPlan `json:"assignedPlans,omitempty"` + // BusinessPhones undocumented + BusinessPhones []string `json:"businessPhones,omitempty"` + // Department undocumented + Department *string `json:"department,omitempty"` + // DisplayName undocumented + DisplayName *string `json:"displayName,omitempty"` + // GivenName undocumented + GivenName *string `json:"givenName,omitempty"` + // Mail undocumented + Mail *string `json:"mail,omitempty"` + // MailNickname undocumented + MailNickname *string `json:"mailNickname,omitempty"` + // MobilePhone undocumented + MobilePhone *string `json:"mobilePhone,omitempty"` + // PasswordPolicies undocumented + PasswordPolicies *string `json:"passwordPolicies,omitempty"` + // PasswordProfile undocumented + PasswordProfile *PasswordProfile `json:"passwordProfile,omitempty"` + // OfficeLocation undocumented + OfficeLocation *string `json:"officeLocation,omitempty"` + // PreferredLanguage undocumented + PreferredLanguage *string `json:"preferredLanguage,omitempty"` + // ProvisionedPlans undocumented + ProvisionedPlans []ProvisionedPlan `json:"provisionedPlans,omitempty"` + // RefreshTokensValidFromDateTime undocumented + RefreshTokensValidFromDateTime *time.Time `json:"refreshTokensValidFromDateTime,omitempty"` + // ShowInAddressList undocumented + ShowInAddressList *bool `json:"showInAddressList,omitempty"` + // Surname undocumented + Surname *string `json:"surname,omitempty"` + // UsageLocation undocumented + UsageLocation *string `json:"usageLocation,omitempty"` + // UserPrincipalName undocumented + UserPrincipalName *string `json:"userPrincipalName,omitempty"` + // UserType undocumented + UserType *string `json:"userType,omitempty"` + // OnPremisesInfo undocumented + OnPremisesInfo *EducationOnPremisesInfo `json:"onPremisesInfo,omitempty"` + // Assignments undocumented + Assignments []EducationAssignment `json:"assignments,omitempty"` + // Rubrics undocumented + Rubrics []EducationRubric `json:"rubrics,omitempty"` + // Classes undocumented + Classes []EducationClass `json:"classes,omitempty"` + // TaughtClasses undocumented + TaughtClasses []EducationClass `json:"taughtClasses,omitempty"` + // Schools undocumented + Schools []EducationSchool `json:"schools,omitempty"` + // User undocumented + User *User `json:"user,omitempty"` +} |