mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-28 13:42:01 -08:00
42 lines
1.7 KiB
Go
42 lines
1.7 KiB
Go
|
// 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
|
||
|
}
|