blob: 07347d89cd599c83d5159721f931cfd105a6e41a (
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// EntrySyncOperation undocumented
type EntrySyncOperation int
const (
// EntrySyncOperationVNone undocumented
EntrySyncOperationVNone EntrySyncOperation = 0
// EntrySyncOperationVAdd undocumented
EntrySyncOperationVAdd EntrySyncOperation = 1
// EntrySyncOperationVDelete undocumented
EntrySyncOperationVDelete EntrySyncOperation = 2
// EntrySyncOperationVUpdate undocumented
EntrySyncOperationVUpdate EntrySyncOperation = 3
)
// EntrySyncOperationPNone returns a pointer to EntrySyncOperationVNone
func EntrySyncOperationPNone() *EntrySyncOperation {
v := EntrySyncOperationVNone
return &v
}
// EntrySyncOperationPAdd returns a pointer to EntrySyncOperationVAdd
func EntrySyncOperationPAdd() *EntrySyncOperation {
v := EntrySyncOperationVAdd
return &v
}
// EntrySyncOperationPDelete returns a pointer to EntrySyncOperationVDelete
func EntrySyncOperationPDelete() *EntrySyncOperation {
v := EntrySyncOperationVDelete
return &v
}
// EntrySyncOperationPUpdate returns a pointer to EntrySyncOperationVUpdate
func EntrySyncOperationPUpdate() *EntrySyncOperation {
v := EntrySyncOperationVUpdate
return &v
}
|