summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/EasServicesEnum.go
blob: adb5b31f1fca006762ca9304026b2562aa56a5ad (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Code generated by msgraph-generate.go DO NOT EDIT.

package msgraph

// EasServices undocumented
type EasServices int

const (
	// EasServicesVNone undocumented
	EasServicesVNone EasServices = 0
	// EasServicesVCalendars undocumented
	EasServicesVCalendars EasServices = 1
	// EasServicesVContacts undocumented
	EasServicesVContacts EasServices = 2
	// EasServicesVEmail undocumented
	EasServicesVEmail EasServices = 4
	// EasServicesVNotes undocumented
	EasServicesVNotes EasServices = 8
	// EasServicesVReminders undocumented
	EasServicesVReminders EasServices = 16
)

// EasServicesPNone returns a pointer to EasServicesVNone
func EasServicesPNone() *EasServices {
	v := EasServicesVNone
	return &v
}

// EasServicesPCalendars returns a pointer to EasServicesVCalendars
func EasServicesPCalendars() *EasServices {
	v := EasServicesVCalendars
	return &v
}

// EasServicesPContacts returns a pointer to EasServicesVContacts
func EasServicesPContacts() *EasServices {
	v := EasServicesVContacts
	return &v
}

// EasServicesPEmail returns a pointer to EasServicesVEmail
func EasServicesPEmail() *EasServices {
	v := EasServicesVEmail
	return &v
}

// EasServicesPNotes returns a pointer to EasServicesVNotes
func EasServicesPNotes() *EasServices {
	v := EasServicesVNotes
	return &v
}

// EasServicesPReminders returns a pointer to EasServicesVReminders
func EasServicesPReminders() *EasServices {
	v := EasServicesVReminders
	return &v
}