5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-11-10 14:30:26 +00:00
matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/IOSWallpaperDisplayLocationEnum.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
}