summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/AccessScopeEnum.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/AccessScopeEnum.go')
-rw-r--r--vendor/github.com/matterbridge/msgraph.go/beta/AccessScopeEnum.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/AccessScopeEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/AccessScopeEnum.go
new file mode 100644
index 00000000..39e7e972
--- /dev/null
+++ b/vendor/github.com/matterbridge/msgraph.go/beta/AccessScopeEnum.go
@@ -0,0 +1,25 @@
+// Code generated by msgraph-generate.go DO NOT EDIT.
+
+package msgraph
+
+// AccessScope undocumented
+type AccessScope int
+
+const (
+ // AccessScopeVInOrganization undocumented
+ AccessScopeVInOrganization AccessScope = 0
+ // AccessScopeVNotInOrganization undocumented
+ AccessScopeVNotInOrganization AccessScope = 1
+)
+
+// AccessScopePInOrganization returns a pointer to AccessScopeVInOrganization
+func AccessScopePInOrganization() *AccessScope {
+ v := AccessScopeVInOrganization
+ return &v
+}
+
+// AccessScopePNotInOrganization returns a pointer to AccessScopeVNotInOrganization
+func AccessScopePNotInOrganization() *AccessScope {
+ v := AccessScopeVNotInOrganization
+ return &v
+}