summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationScheduleStateEnum.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationScheduleStateEnum.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationScheduleStateEnum.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationScheduleStateEnum.go b/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationScheduleStateEnum.go
new file mode 100644
index 00000000..4646c96c
--- /dev/null
+++ b/vendor/github.com/yaegashi/msgraph.go/beta/SynchronizationScheduleStateEnum.go
@@ -0,0 +1,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
+}