mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-13 02:20:25 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
42 lines
1.5 KiB
Go
42 lines
1.5 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// AndroidUsernameSource undocumented
|
|
type AndroidUsernameSource int
|
|
|
|
const (
|
|
// AndroidUsernameSourceVUsername undocumented
|
|
AndroidUsernameSourceVUsername AndroidUsernameSource = 0
|
|
// AndroidUsernameSourceVUserPrincipalName undocumented
|
|
AndroidUsernameSourceVUserPrincipalName AndroidUsernameSource = 1
|
|
// AndroidUsernameSourceVSamAccountName undocumented
|
|
AndroidUsernameSourceVSamAccountName AndroidUsernameSource = 2
|
|
// AndroidUsernameSourceVPrimarySMTPAddress undocumented
|
|
AndroidUsernameSourceVPrimarySMTPAddress AndroidUsernameSource = 3
|
|
)
|
|
|
|
// AndroidUsernameSourcePUsername returns a pointer to AndroidUsernameSourceVUsername
|
|
func AndroidUsernameSourcePUsername() *AndroidUsernameSource {
|
|
v := AndroidUsernameSourceVUsername
|
|
return &v
|
|
}
|
|
|
|
// AndroidUsernameSourcePUserPrincipalName returns a pointer to AndroidUsernameSourceVUserPrincipalName
|
|
func AndroidUsernameSourcePUserPrincipalName() *AndroidUsernameSource {
|
|
v := AndroidUsernameSourceVUserPrincipalName
|
|
return &v
|
|
}
|
|
|
|
// AndroidUsernameSourcePSamAccountName returns a pointer to AndroidUsernameSourceVSamAccountName
|
|
func AndroidUsernameSourcePSamAccountName() *AndroidUsernameSource {
|
|
v := AndroidUsernameSourceVSamAccountName
|
|
return &v
|
|
}
|
|
|
|
// AndroidUsernameSourcePPrimarySMTPAddress returns a pointer to AndroidUsernameSourceVPrimarySMTPAddress
|
|
func AndroidUsernameSourcePPrimarySMTPAddress() *AndroidUsernameSource {
|
|
v := AndroidUsernameSourceVPrimarySMTPAddress
|
|
return &v
|
|
}
|