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
50 lines
2.0 KiB
Go
50 lines
2.0 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// DeviceManagementComparisonResult undocumented
|
|
type DeviceManagementComparisonResult int
|
|
|
|
const (
|
|
// DeviceManagementComparisonResultVUnknown undocumented
|
|
DeviceManagementComparisonResultVUnknown DeviceManagementComparisonResult = 0
|
|
// DeviceManagementComparisonResultVEqual undocumented
|
|
DeviceManagementComparisonResultVEqual DeviceManagementComparisonResult = 1
|
|
// DeviceManagementComparisonResultVNotEqual undocumented
|
|
DeviceManagementComparisonResultVNotEqual DeviceManagementComparisonResult = 2
|
|
// DeviceManagementComparisonResultVAdded undocumented
|
|
DeviceManagementComparisonResultVAdded DeviceManagementComparisonResult = 3
|
|
// DeviceManagementComparisonResultVRemoved undocumented
|
|
DeviceManagementComparisonResultVRemoved DeviceManagementComparisonResult = 4
|
|
)
|
|
|
|
// DeviceManagementComparisonResultPUnknown returns a pointer to DeviceManagementComparisonResultVUnknown
|
|
func DeviceManagementComparisonResultPUnknown() *DeviceManagementComparisonResult {
|
|
v := DeviceManagementComparisonResultVUnknown
|
|
return &v
|
|
}
|
|
|
|
// DeviceManagementComparisonResultPEqual returns a pointer to DeviceManagementComparisonResultVEqual
|
|
func DeviceManagementComparisonResultPEqual() *DeviceManagementComparisonResult {
|
|
v := DeviceManagementComparisonResultVEqual
|
|
return &v
|
|
}
|
|
|
|
// DeviceManagementComparisonResultPNotEqual returns a pointer to DeviceManagementComparisonResultVNotEqual
|
|
func DeviceManagementComparisonResultPNotEqual() *DeviceManagementComparisonResult {
|
|
v := DeviceManagementComparisonResultVNotEqual
|
|
return &v
|
|
}
|
|
|
|
// DeviceManagementComparisonResultPAdded returns a pointer to DeviceManagementComparisonResultVAdded
|
|
func DeviceManagementComparisonResultPAdded() *DeviceManagementComparisonResult {
|
|
v := DeviceManagementComparisonResultVAdded
|
|
return &v
|
|
}
|
|
|
|
// DeviceManagementComparisonResultPRemoved returns a pointer to DeviceManagementComparisonResultVRemoved
|
|
func DeviceManagementComparisonResultPRemoved() *DeviceManagementComparisonResult {
|
|
v := DeviceManagementComparisonResultVRemoved
|
|
return &v
|
|
}
|