mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-25 20:22:03 -08: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
|
||
|
}
|