summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/DeviceManagementComparisonResultEnum.go
blob: 336dafb61bf9562e7773e007086817310bd22d4b (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
// Code generated by msgraph-generate.go DO NOT EDIT.

package msgraph

// DeviceManagementComparisonResult undocumented
type DeviceManagementComparisonResult int

const (
	// DeviceManagementComparisonResultVUnknown undocumented
	DeviceManagementComparisonResultVUnknown DeviceManagementComparisonResult = 0
	// DeviceManagementComparisonResultVEqual undocumented
	DeviceManagementComparisonResultVEqual DeviceManagementComparisonResult = 1
	// DeviceManagementComparisonResultVNotEqual undocumented
	DeviceManagementComparisonResultVNotEqual DeviceManagementComparisonResult = 2
	// DeviceManagementComparisonResultVAdded undocumented
	DeviceManagementComparisonResultVAdded DeviceManagementComparisonResult = 3
	// DeviceManagementComparisonResultVRemoved undocumented
	DeviceManagementComparisonResultVRemoved DeviceManagementComparisonResult = 4
)

// DeviceManagementComparisonResultPUnknown returns a pointer to DeviceManagementComparisonResultVUnknown
func DeviceManagementComparisonResultPUnknown() *DeviceManagementComparisonResult {
	v := DeviceManagementComparisonResultVUnknown
	return &v
}

// DeviceManagementComparisonResultPEqual returns a pointer to DeviceManagementComparisonResultVEqual
func DeviceManagementComparisonResultPEqual() *DeviceManagementComparisonResult {
	v := DeviceManagementComparisonResultVEqual
	return &v
}

// DeviceManagementComparisonResultPNotEqual returns a pointer to DeviceManagementComparisonResultVNotEqual
func DeviceManagementComparisonResultPNotEqual() *DeviceManagementComparisonResult {
	v := DeviceManagementComparisonResultVNotEqual
	return &v
}

// DeviceManagementComparisonResultPAdded returns a pointer to DeviceManagementComparisonResultVAdded
func DeviceManagementComparisonResultPAdded() *DeviceManagementComparisonResult {
	v := DeviceManagementComparisonResultVAdded
	return &v
}

// DeviceManagementComparisonResultPRemoved returns a pointer to DeviceManagementComparisonResultVRemoved
func DeviceManagementComparisonResultPRemoved() *DeviceManagementComparisonResult {
	v := DeviceManagementComparisonResultVRemoved
	return &v
}