blob: 210c4e45dfabbb0924790d48d4f800fbfa871fa2 (
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// WindowsSpotlightEnablementSettings undocumented
type WindowsSpotlightEnablementSettings int
const (
// WindowsSpotlightEnablementSettingsVNotConfigured undocumented
WindowsSpotlightEnablementSettingsVNotConfigured WindowsSpotlightEnablementSettings = 0
// WindowsSpotlightEnablementSettingsVDisabled undocumented
WindowsSpotlightEnablementSettingsVDisabled WindowsSpotlightEnablementSettings = 1
// WindowsSpotlightEnablementSettingsVEnabled undocumented
WindowsSpotlightEnablementSettingsVEnabled WindowsSpotlightEnablementSettings = 2
)
// WindowsSpotlightEnablementSettingsPNotConfigured returns a pointer to WindowsSpotlightEnablementSettingsVNotConfigured
func WindowsSpotlightEnablementSettingsPNotConfigured() *WindowsSpotlightEnablementSettings {
v := WindowsSpotlightEnablementSettingsVNotConfigured
return &v
}
// WindowsSpotlightEnablementSettingsPDisabled returns a pointer to WindowsSpotlightEnablementSettingsVDisabled
func WindowsSpotlightEnablementSettingsPDisabled() *WindowsSpotlightEnablementSettings {
v := WindowsSpotlightEnablementSettingsVDisabled
return &v
}
// WindowsSpotlightEnablementSettingsPEnabled returns a pointer to WindowsSpotlightEnablementSettingsVEnabled
func WindowsSpotlightEnablementSettingsPEnabled() *WindowsSpotlightEnablementSettings {
v := WindowsSpotlightEnablementSettingsVEnabled
return &v
}
|