Add initial Microsoft Teams support

Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
This commit is contained in:
Wim
2019-12-26 23:12:28 +01:00
parent 3af0dc3b3a
commit 795a8705c3
3362 changed files with 229502 additions and 22 deletions

View File

@@ -0,0 +1,57 @@
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// DeviceManangementIntentValueType undocumented
type DeviceManangementIntentValueType int
const (
// DeviceManangementIntentValueTypeVInteger undocumented
DeviceManangementIntentValueTypeVInteger DeviceManangementIntentValueType = 0
// DeviceManangementIntentValueTypeVBoolean undocumented
DeviceManangementIntentValueTypeVBoolean DeviceManangementIntentValueType = 1
// DeviceManangementIntentValueTypeVString undocumented
DeviceManangementIntentValueTypeVString DeviceManangementIntentValueType = 2
// DeviceManangementIntentValueTypeVComplex undocumented
DeviceManangementIntentValueTypeVComplex DeviceManangementIntentValueType = 3
// DeviceManangementIntentValueTypeVCollection undocumented
DeviceManangementIntentValueTypeVCollection DeviceManangementIntentValueType = 4
// DeviceManangementIntentValueTypeVAbstractComplex undocumented
DeviceManangementIntentValueTypeVAbstractComplex DeviceManangementIntentValueType = 5
)
// DeviceManangementIntentValueTypePInteger returns a pointer to DeviceManangementIntentValueTypeVInteger
func DeviceManangementIntentValueTypePInteger() *DeviceManangementIntentValueType {
v := DeviceManangementIntentValueTypeVInteger
return &v
}
// DeviceManangementIntentValueTypePBoolean returns a pointer to DeviceManangementIntentValueTypeVBoolean
func DeviceManangementIntentValueTypePBoolean() *DeviceManangementIntentValueType {
v := DeviceManangementIntentValueTypeVBoolean
return &v
}
// DeviceManangementIntentValueTypePString returns a pointer to DeviceManangementIntentValueTypeVString
func DeviceManangementIntentValueTypePString() *DeviceManangementIntentValueType {
v := DeviceManangementIntentValueTypeVString
return &v
}
// DeviceManangementIntentValueTypePComplex returns a pointer to DeviceManangementIntentValueTypeVComplex
func DeviceManangementIntentValueTypePComplex() *DeviceManangementIntentValueType {
v := DeviceManangementIntentValueTypeVComplex
return &v
}
// DeviceManangementIntentValueTypePCollection returns a pointer to DeviceManangementIntentValueTypeVCollection
func DeviceManangementIntentValueTypePCollection() *DeviceManangementIntentValueType {
v := DeviceManangementIntentValueTypeVCollection
return &v
}
// DeviceManangementIntentValueTypePAbstractComplex returns a pointer to DeviceManangementIntentValueTypeVAbstractComplex
func DeviceManangementIntentValueTypePAbstractComplex() *DeviceManangementIntentValueType {
v := DeviceManangementIntentValueTypeVAbstractComplex
return &v
}