mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
34 lines
1.2 KiB
Go
34 lines
1.2 KiB
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// DeviceAppManagementTaskPriority undocumented
|
||
|
type DeviceAppManagementTaskPriority int
|
||
|
|
||
|
const (
|
||
|
// DeviceAppManagementTaskPriorityVNone undocumented
|
||
|
DeviceAppManagementTaskPriorityVNone DeviceAppManagementTaskPriority = 0
|
||
|
// DeviceAppManagementTaskPriorityVHigh undocumented
|
||
|
DeviceAppManagementTaskPriorityVHigh DeviceAppManagementTaskPriority = 1
|
||
|
// DeviceAppManagementTaskPriorityVLow undocumented
|
||
|
DeviceAppManagementTaskPriorityVLow DeviceAppManagementTaskPriority = 2
|
||
|
)
|
||
|
|
||
|
// DeviceAppManagementTaskPriorityPNone returns a pointer to DeviceAppManagementTaskPriorityVNone
|
||
|
func DeviceAppManagementTaskPriorityPNone() *DeviceAppManagementTaskPriority {
|
||
|
v := DeviceAppManagementTaskPriorityVNone
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// DeviceAppManagementTaskPriorityPHigh returns a pointer to DeviceAppManagementTaskPriorityVHigh
|
||
|
func DeviceAppManagementTaskPriorityPHigh() *DeviceAppManagementTaskPriority {
|
||
|
v := DeviceAppManagementTaskPriorityVHigh
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// DeviceAppManagementTaskPriorityPLow returns a pointer to DeviceAppManagementTaskPriorityVLow
|
||
|
func DeviceAppManagementTaskPriorityPLow() *DeviceAppManagementTaskPriority {
|
||
|
v := DeviceAppManagementTaskPriorityVLow
|
||
|
return &v
|
||
|
}
|