mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-02-18 16:09:14 +00:00
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
|
|
}
|