Add initial Microsoft Teams support

Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
This commit is contained in:
Wim
2019-12-26 23:12:28 +01:00
parent 3af0dc3b3a
commit 795a8705c3
3362 changed files with 229502 additions and 22 deletions

View File

@@ -0,0 +1,73 @@
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// AllowedAudiences undocumented
type AllowedAudiences int
const (
// AllowedAudiencesVMe undocumented
AllowedAudiencesVMe AllowedAudiences = 0
// AllowedAudiencesVFamily undocumented
AllowedAudiencesVFamily AllowedAudiences = 1
// AllowedAudiencesVContacts undocumented
AllowedAudiencesVContacts AllowedAudiences = 2
// AllowedAudiencesVGroupMembers undocumented
AllowedAudiencesVGroupMembers AllowedAudiences = 4
// AllowedAudiencesVOrganization undocumented
AllowedAudiencesVOrganization AllowedAudiences = 8
// AllowedAudiencesVFederatedOrganizations undocumented
AllowedAudiencesVFederatedOrganizations AllowedAudiences = 16
// AllowedAudiencesVEveryone undocumented
AllowedAudiencesVEveryone AllowedAudiences = 32
// AllowedAudiencesVUnknownFutureValue undocumented
AllowedAudiencesVUnknownFutureValue AllowedAudiences = 64
)
// AllowedAudiencesPMe returns a pointer to AllowedAudiencesVMe
func AllowedAudiencesPMe() *AllowedAudiences {
v := AllowedAudiencesVMe
return &v
}
// AllowedAudiencesPFamily returns a pointer to AllowedAudiencesVFamily
func AllowedAudiencesPFamily() *AllowedAudiences {
v := AllowedAudiencesVFamily
return &v
}
// AllowedAudiencesPContacts returns a pointer to AllowedAudiencesVContacts
func AllowedAudiencesPContacts() *AllowedAudiences {
v := AllowedAudiencesVContacts
return &v
}
// AllowedAudiencesPGroupMembers returns a pointer to AllowedAudiencesVGroupMembers
func AllowedAudiencesPGroupMembers() *AllowedAudiences {
v := AllowedAudiencesVGroupMembers
return &v
}
// AllowedAudiencesPOrganization returns a pointer to AllowedAudiencesVOrganization
func AllowedAudiencesPOrganization() *AllowedAudiences {
v := AllowedAudiencesVOrganization
return &v
}
// AllowedAudiencesPFederatedOrganizations returns a pointer to AllowedAudiencesVFederatedOrganizations
func AllowedAudiencesPFederatedOrganizations() *AllowedAudiences {
v := AllowedAudiencesVFederatedOrganizations
return &v
}
// AllowedAudiencesPEveryone returns a pointer to AllowedAudiencesVEveryone
func AllowedAudiencesPEveryone() *AllowedAudiences {
v := AllowedAudiencesVEveryone
return &v
}
// AllowedAudiencesPUnknownFutureValue returns a pointer to AllowedAudiencesVUnknownFutureValue
func AllowedAudiencesPUnknownFutureValue() *AllowedAudiences {
v := AllowedAudiencesVUnknownFutureValue
return &v
}