summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationScheduleStateEnum.go
blob: 4646c96ceb61b9fd400eb0857b1ec7bc0f978c46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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
}