mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-28 13:42:01 -08:00
58 lines
2.4 KiB
Go
58 lines
2.4 KiB
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// DeviceManagementSubscriptions undocumented
|
||
|
type DeviceManagementSubscriptions int
|
||
|
|
||
|
const (
|
||
|
// DeviceManagementSubscriptionsVNone undocumented
|
||
|
DeviceManagementSubscriptionsVNone DeviceManagementSubscriptions = 0
|
||
|
// DeviceManagementSubscriptionsVIntune undocumented
|
||
|
DeviceManagementSubscriptionsVIntune DeviceManagementSubscriptions = 1
|
||
|
// DeviceManagementSubscriptionsVOffice365 undocumented
|
||
|
DeviceManagementSubscriptionsVOffice365 DeviceManagementSubscriptions = 2
|
||
|
// DeviceManagementSubscriptionsVIntunePremium undocumented
|
||
|
DeviceManagementSubscriptionsVIntunePremium DeviceManagementSubscriptions = 4
|
||
|
// DeviceManagementSubscriptionsVIntune_EDU undocumented
|
||
|
DeviceManagementSubscriptionsVIntune_EDU DeviceManagementSubscriptions = 8
|
||
|
// DeviceManagementSubscriptionsVIntune_SMB undocumented
|
||
|
DeviceManagementSubscriptionsVIntune_SMB DeviceManagementSubscriptions = 16
|
||
|
)
|
||
|
|
||
|
// DeviceManagementSubscriptionsPNone returns a pointer to DeviceManagementSubscriptionsVNone
|
||
|
func DeviceManagementSubscriptionsPNone() *DeviceManagementSubscriptions {
|
||
|
v := DeviceManagementSubscriptionsVNone
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// DeviceManagementSubscriptionsPIntune returns a pointer to DeviceManagementSubscriptionsVIntune
|
||
|
func DeviceManagementSubscriptionsPIntune() *DeviceManagementSubscriptions {
|
||
|
v := DeviceManagementSubscriptionsVIntune
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// DeviceManagementSubscriptionsPOffice365 returns a pointer to DeviceManagementSubscriptionsVOffice365
|
||
|
func DeviceManagementSubscriptionsPOffice365() *DeviceManagementSubscriptions {
|
||
|
v := DeviceManagementSubscriptionsVOffice365
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// DeviceManagementSubscriptionsPIntunePremium returns a pointer to DeviceManagementSubscriptionsVIntunePremium
|
||
|
func DeviceManagementSubscriptionsPIntunePremium() *DeviceManagementSubscriptions {
|
||
|
v := DeviceManagementSubscriptionsVIntunePremium
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// DeviceManagementSubscriptionsPIntune_EDU returns a pointer to DeviceManagementSubscriptionsVIntune_EDU
|
||
|
func DeviceManagementSubscriptionsPIntune_EDU() *DeviceManagementSubscriptions {
|
||
|
v := DeviceManagementSubscriptionsVIntune_EDU
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// DeviceManagementSubscriptionsPIntune_SMB returns a pointer to DeviceManagementSubscriptionsVIntune_SMB
|
||
|
func DeviceManagementSubscriptionsPIntune_SMB() *DeviceManagementSubscriptions {
|
||
|
v := DeviceManagementSubscriptionsVIntune_SMB
|
||
|
return &v
|
||
|
}
|