summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/UserEmailSourceEnum.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/UserEmailSourceEnum.go')
-rw-r--r--vendor/github.com/matterbridge/msgraph.go/beta/UserEmailSourceEnum.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/UserEmailSourceEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/UserEmailSourceEnum.go
new file mode 100644
index 00000000..0763aa18
--- /dev/null
+++ b/vendor/github.com/matterbridge/msgraph.go/beta/UserEmailSourceEnum.go
@@ -0,0 +1,25 @@
+// 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
+}