blob: 54c59d07db6dd4dd386e6288d9b3afabe326aa11 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// UsernameSource undocumented
type UsernameSource string
const (
// UsernameSourceVUserPrincipalName undocumented
UsernameSourceVUserPrincipalName UsernameSource = "userPrincipalName"
// UsernameSourceVPrimarySMTPAddress undocumented
UsernameSourceVPrimarySMTPAddress UsernameSource = "primarySmtpAddress"
// UsernameSourceVSamAccountName undocumented
UsernameSourceVSamAccountName UsernameSource = "samAccountName"
)
var (
// UsernameSourcePUserPrincipalName is a pointer to UsernameSourceVUserPrincipalName
UsernameSourcePUserPrincipalName = &_UsernameSourcePUserPrincipalName
// UsernameSourcePPrimarySMTPAddress is a pointer to UsernameSourceVPrimarySMTPAddress
UsernameSourcePPrimarySMTPAddress = &_UsernameSourcePPrimarySMTPAddress
// UsernameSourcePSamAccountName is a pointer to UsernameSourceVSamAccountName
UsernameSourcePSamAccountName = &_UsernameSourcePSamAccountName
)
var (
_UsernameSourcePUserPrincipalName = UsernameSourceVUserPrincipalName
_UsernameSourcePPrimarySMTPAddress = UsernameSourceVPrimarySMTPAddress
_UsernameSourcePSamAccountName = UsernameSourceVSamAccountName
)
|