summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/UserEmailSourceEnum.go
blob: 0763aa18c31195b82c20fac4bc6f5c5a06722a2c (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
// 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
}