blob: bf4b54b64aa898a9d11e01897909e42852bec840 (
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
// IOSWallpaperDisplayLocation undocumented
type IOSWallpaperDisplayLocation int
const (
// IOSWallpaperDisplayLocationVNotConfigured undocumented
IOSWallpaperDisplayLocationVNotConfigured IOSWallpaperDisplayLocation = 0
// IOSWallpaperDisplayLocationVLockScreen undocumented
IOSWallpaperDisplayLocationVLockScreen IOSWallpaperDisplayLocation = 1
// IOSWallpaperDisplayLocationVHomeScreen undocumented
IOSWallpaperDisplayLocationVHomeScreen IOSWallpaperDisplayLocation = 2
// IOSWallpaperDisplayLocationVLockAndHomeScreens undocumented
IOSWallpaperDisplayLocationVLockAndHomeScreens IOSWallpaperDisplayLocation = 3
)
// IOSWallpaperDisplayLocationPNotConfigured returns a pointer to IOSWallpaperDisplayLocationVNotConfigured
func IOSWallpaperDisplayLocationPNotConfigured() *IOSWallpaperDisplayLocation {
v := IOSWallpaperDisplayLocationVNotConfigured
return &v
}
// IOSWallpaperDisplayLocationPLockScreen returns a pointer to IOSWallpaperDisplayLocationVLockScreen
func IOSWallpaperDisplayLocationPLockScreen() *IOSWallpaperDisplayLocation {
v := IOSWallpaperDisplayLocationVLockScreen
return &v
}
// IOSWallpaperDisplayLocationPHomeScreen returns a pointer to IOSWallpaperDisplayLocationVHomeScreen
func IOSWallpaperDisplayLocationPHomeScreen() *IOSWallpaperDisplayLocation {
v := IOSWallpaperDisplayLocationVHomeScreen
return &v
}
// IOSWallpaperDisplayLocationPLockAndHomeScreens returns a pointer to IOSWallpaperDisplayLocationVLockAndHomeScreens
func IOSWallpaperDisplayLocationPLockAndHomeScreens() *IOSWallpaperDisplayLocation {
v := IOSWallpaperDisplayLocationVLockAndHomeScreens
return &v
}
|