mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-24 19:52:03 -08:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
26 lines
770 B
Go
26 lines
770 B
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// UserEmailSource undocumented
|
|
type UserEmailSource int
|
|
|
|
const (
|
|
// UserEmailSourceVUserPrincipalName undocumented
|
|
UserEmailSourceVUserPrincipalName UserEmailSource = 0
|
|
// UserEmailSourceVPrimarySMTPAddress undocumented
|
|
UserEmailSourceVPrimarySMTPAddress UserEmailSource = 1
|
|
)
|
|
|
|
// UserEmailSourcePUserPrincipalName returns a pointer to UserEmailSourceVUserPrincipalName
|
|
func UserEmailSourcePUserPrincipalName() *UserEmailSource {
|
|
v := UserEmailSourceVUserPrincipalName
|
|
return &v
|
|
}
|
|
|
|
// UserEmailSourcePPrimarySMTPAddress returns a pointer to UserEmailSourceVPrimarySMTPAddress
|
|
func UserEmailSourcePPrimarySMTPAddress() *UserEmailSource {
|
|
v := UserEmailSourceVPrimarySMTPAddress
|
|
return &v
|
|
}
|