mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 14:30:26 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
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
|
|
}
|