summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/OfficeUpdateChannelEnum.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/OfficeUpdateChannelEnum.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/OfficeUpdateChannelEnum.go49
1 files changed, 49 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/OfficeUpdateChannelEnum.go b/vendor/github.com/yaegashi/msgraph.go/beta/OfficeUpdateChannelEnum.go
new file mode 100644
index 00000000..997e27e0
--- /dev/null
+++ b/vendor/github.com/yaegashi/msgraph.go/beta/OfficeUpdateChannelEnum.go
@@ -0,0 +1,49 @@
+// Code generated by msgraph-generate.go DO NOT EDIT.
+
+package msgraph
+
+// OfficeUpdateChannel undocumented
+type OfficeUpdateChannel int
+
+const (
+ // OfficeUpdateChannelVNone undocumented
+ OfficeUpdateChannelVNone OfficeUpdateChannel = 0
+ // OfficeUpdateChannelVCurrent undocumented
+ OfficeUpdateChannelVCurrent OfficeUpdateChannel = 1
+ // OfficeUpdateChannelVDeferred undocumented
+ OfficeUpdateChannelVDeferred OfficeUpdateChannel = 2
+ // OfficeUpdateChannelVFirstReleaseCurrent undocumented
+ OfficeUpdateChannelVFirstReleaseCurrent OfficeUpdateChannel = 3
+ // OfficeUpdateChannelVFirstReleaseDeferred undocumented
+ OfficeUpdateChannelVFirstReleaseDeferred OfficeUpdateChannel = 4
+)
+
+// OfficeUpdateChannelPNone returns a pointer to OfficeUpdateChannelVNone
+func OfficeUpdateChannelPNone() *OfficeUpdateChannel {
+ v := OfficeUpdateChannelVNone
+ return &v
+}
+
+// OfficeUpdateChannelPCurrent returns a pointer to OfficeUpdateChannelVCurrent
+func OfficeUpdateChannelPCurrent() *OfficeUpdateChannel {
+ v := OfficeUpdateChannelVCurrent
+ return &v
+}
+
+// OfficeUpdateChannelPDeferred returns a pointer to OfficeUpdateChannelVDeferred
+func OfficeUpdateChannelPDeferred() *OfficeUpdateChannel {
+ v := OfficeUpdateChannelVDeferred
+ return &v
+}
+
+// OfficeUpdateChannelPFirstReleaseCurrent returns a pointer to OfficeUpdateChannelVFirstReleaseCurrent
+func OfficeUpdateChannelPFirstReleaseCurrent() *OfficeUpdateChannel {
+ v := OfficeUpdateChannelVFirstReleaseCurrent
+ return &v
+}
+
+// OfficeUpdateChannelPFirstReleaseDeferred returns a pointer to OfficeUpdateChannelVFirstReleaseDeferred
+func OfficeUpdateChannelPFirstReleaseDeferred() *OfficeUpdateChannel {
+ v := OfficeUpdateChannelVFirstReleaseDeferred
+ return &v
+}