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
878 B
Go
26 lines
878 B
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// SynchronizationScheduleState undocumented
|
|
type SynchronizationScheduleState int
|
|
|
|
const (
|
|
// SynchronizationScheduleStateVActive undocumented
|
|
SynchronizationScheduleStateVActive SynchronizationScheduleState = 0
|
|
// SynchronizationScheduleStateVDisabled undocumented
|
|
SynchronizationScheduleStateVDisabled SynchronizationScheduleState = 1
|
|
)
|
|
|
|
// SynchronizationScheduleStatePActive returns a pointer to SynchronizationScheduleStateVActive
|
|
func SynchronizationScheduleStatePActive() *SynchronizationScheduleState {
|
|
v := SynchronizationScheduleStateVActive
|
|
return &v
|
|
}
|
|
|
|
// SynchronizationScheduleStatePDisabled returns a pointer to SynchronizationScheduleStateVDisabled
|
|
func SynchronizationScheduleStatePDisabled() *SynchronizationScheduleState {
|
|
v := SynchronizationScheduleStateVDisabled
|
|
return &v
|
|
}
|