mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
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
|
||
|
}
|