diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/EnumRestricted.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/EnumRestricted.go | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumRestricted.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRestricted.go new file mode 100644 index 00000000..45f044d0 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumRestricted.go @@ -0,0 +1,25 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +// RestrictedAppsState undocumented +type RestrictedAppsState string + +const ( + // RestrictedAppsStateVProhibitedApps undocumented + RestrictedAppsStateVProhibitedApps RestrictedAppsState = "prohibitedApps" + // RestrictedAppsStateVNotApprovedApps undocumented + RestrictedAppsStateVNotApprovedApps RestrictedAppsState = "notApprovedApps" +) + +var ( + // RestrictedAppsStatePProhibitedApps is a pointer to RestrictedAppsStateVProhibitedApps + RestrictedAppsStatePProhibitedApps = &_RestrictedAppsStatePProhibitedApps + // RestrictedAppsStatePNotApprovedApps is a pointer to RestrictedAppsStateVNotApprovedApps + RestrictedAppsStatePNotApprovedApps = &_RestrictedAppsStatePNotApprovedApps +) + +var ( + _RestrictedAppsStatePProhibitedApps = RestrictedAppsStateVProhibitedApps + _RestrictedAppsStatePNotApprovedApps = RestrictedAppsStateVNotApprovedApps +) |