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
26 lines
1.0 KiB
Go
26 lines
1.0 KiB
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// DeviceAndAppManagementAssignmentSource undocumented
|
|
type DeviceAndAppManagementAssignmentSource int
|
|
|
|
const (
|
|
// DeviceAndAppManagementAssignmentSourceVDirect undocumented
|
|
DeviceAndAppManagementAssignmentSourceVDirect DeviceAndAppManagementAssignmentSource = 0
|
|
// DeviceAndAppManagementAssignmentSourceVPolicySets undocumented
|
|
DeviceAndAppManagementAssignmentSourceVPolicySets DeviceAndAppManagementAssignmentSource = 1
|
|
)
|
|
|
|
// DeviceAndAppManagementAssignmentSourcePDirect returns a pointer to DeviceAndAppManagementAssignmentSourceVDirect
|
|
func DeviceAndAppManagementAssignmentSourcePDirect() *DeviceAndAppManagementAssignmentSource {
|
|
v := DeviceAndAppManagementAssignmentSourceVDirect
|
|
return &v
|
|
}
|
|
|
|
// DeviceAndAppManagementAssignmentSourcePPolicySets returns a pointer to DeviceAndAppManagementAssignmentSourceVPolicySets
|
|
func DeviceAndAppManagementAssignmentSourcePPolicySets() *DeviceAndAppManagementAssignmentSource {
|
|
v := DeviceAndAppManagementAssignmentSourceVPolicySets
|
|
return &v
|
|
}
|