mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 16:50:27 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
66 lines
2.9 KiB
Go
66 lines
2.9 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// DeviceManagementSubscriptionState undocumented
|
|
type DeviceManagementSubscriptionState int
|
|
|
|
const (
|
|
// DeviceManagementSubscriptionStateVPending undocumented
|
|
DeviceManagementSubscriptionStateVPending DeviceManagementSubscriptionState = 0
|
|
// DeviceManagementSubscriptionStateVActive undocumented
|
|
DeviceManagementSubscriptionStateVActive DeviceManagementSubscriptionState = 1
|
|
// DeviceManagementSubscriptionStateVWarning undocumented
|
|
DeviceManagementSubscriptionStateVWarning DeviceManagementSubscriptionState = 2
|
|
// DeviceManagementSubscriptionStateVDisabled undocumented
|
|
DeviceManagementSubscriptionStateVDisabled DeviceManagementSubscriptionState = 3
|
|
// DeviceManagementSubscriptionStateVDeleted undocumented
|
|
DeviceManagementSubscriptionStateVDeleted DeviceManagementSubscriptionState = 4
|
|
// DeviceManagementSubscriptionStateVBlocked undocumented
|
|
DeviceManagementSubscriptionStateVBlocked DeviceManagementSubscriptionState = 5
|
|
// DeviceManagementSubscriptionStateVLockedOut undocumented
|
|
DeviceManagementSubscriptionStateVLockedOut DeviceManagementSubscriptionState = 8
|
|
)
|
|
|
|
// DeviceManagementSubscriptionStatePPending returns a pointer to DeviceManagementSubscriptionStateVPending
|
|
func DeviceManagementSubscriptionStatePPending() *DeviceManagementSubscriptionState {
|
|
v := DeviceManagementSubscriptionStateVPending
|
|
return &v
|
|
}
|
|
|
|
// DeviceManagementSubscriptionStatePActive returns a pointer to DeviceManagementSubscriptionStateVActive
|
|
func DeviceManagementSubscriptionStatePActive() *DeviceManagementSubscriptionState {
|
|
v := DeviceManagementSubscriptionStateVActive
|
|
return &v
|
|
}
|
|
|
|
// DeviceManagementSubscriptionStatePWarning returns a pointer to DeviceManagementSubscriptionStateVWarning
|
|
func DeviceManagementSubscriptionStatePWarning() *DeviceManagementSubscriptionState {
|
|
v := DeviceManagementSubscriptionStateVWarning
|
|
return &v
|
|
}
|
|
|
|
// DeviceManagementSubscriptionStatePDisabled returns a pointer to DeviceManagementSubscriptionStateVDisabled
|
|
func DeviceManagementSubscriptionStatePDisabled() *DeviceManagementSubscriptionState {
|
|
v := DeviceManagementSubscriptionStateVDisabled
|
|
return &v
|
|
}
|
|
|
|
// DeviceManagementSubscriptionStatePDeleted returns a pointer to DeviceManagementSubscriptionStateVDeleted
|
|
func DeviceManagementSubscriptionStatePDeleted() *DeviceManagementSubscriptionState {
|
|
v := DeviceManagementSubscriptionStateVDeleted
|
|
return &v
|
|
}
|
|
|
|
// DeviceManagementSubscriptionStatePBlocked returns a pointer to DeviceManagementSubscriptionStateVBlocked
|
|
func DeviceManagementSubscriptionStatePBlocked() *DeviceManagementSubscriptionState {
|
|
v := DeviceManagementSubscriptionStateVBlocked
|
|
return &v
|
|
}
|
|
|
|
// DeviceManagementSubscriptionStatePLockedOut returns a pointer to DeviceManagementSubscriptionStateVLockedOut
|
|
func DeviceManagementSubscriptionStatePLockedOut() *DeviceManagementSubscriptionState {
|
|
v := DeviceManagementSubscriptionStateVLockedOut
|
|
return &v
|
|
}
|