diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/EnumUsername.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/EnumUsername.go | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumUsername.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumUsername.go new file mode 100644 index 00000000..54c59d07 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumUsername.go @@ -0,0 +1,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 +) |