summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/RestrictedAppsStateEnum.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/RestrictedAppsStateEnum.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/RestrictedAppsStateEnum.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/RestrictedAppsStateEnum.go b/vendor/github.com/yaegashi/msgraph.go/beta/RestrictedAppsStateEnum.go
new file mode 100644
index 00000000..01456d1f
--- /dev/null
+++ b/vendor/github.com/yaegashi/msgraph.go/beta/RestrictedAppsStateEnum.go
@@ -0,0 +1,25 @@
+// Code generated by msgraph-generate.go DO NOT EDIT.
+
+package msgraph
+
+// RestrictedAppsState undocumented
+type RestrictedAppsState int
+
+const (
+ // RestrictedAppsStateVProhibitedApps undocumented
+ RestrictedAppsStateVProhibitedApps RestrictedAppsState = 0
+ // RestrictedAppsStateVNotApprovedApps undocumented
+ RestrictedAppsStateVNotApprovedApps RestrictedAppsState = 1
+)
+
+// RestrictedAppsStatePProhibitedApps returns a pointer to RestrictedAppsStateVProhibitedApps
+func RestrictedAppsStatePProhibitedApps() *RestrictedAppsState {
+ v := RestrictedAppsStateVProhibitedApps
+ return &v
+}
+
+// RestrictedAppsStatePNotApprovedApps returns a pointer to RestrictedAppsStateVNotApprovedApps
+func RestrictedAppsStatePNotApprovedApps() *RestrictedAppsState {
+ v := RestrictedAppsStateVNotApprovedApps
+ return &v
+}