summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/ImportanceEnum.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/ImportanceEnum.go')
-rw-r--r--vendor/github.com/matterbridge/msgraph.go/beta/ImportanceEnum.go33
1 files changed, 33 insertions, 0 deletions
diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/ImportanceEnum.go b/vendor/github.com/matterbridge/msgraph.go/beta/ImportanceEnum.go
new file mode 100644
index 00000000..910018c4
--- /dev/null
+++ b/vendor/github.com/matterbridge/msgraph.go/beta/ImportanceEnum.go
@@ -0,0 +1,33 @@
+// Code generated by msgraph-generate.go DO NOT EDIT.
+
+package msgraph
+
+// Importance undocumented
+type Importance int
+
+const (
+ // ImportanceVLow undocumented
+ ImportanceVLow Importance = 0
+ // ImportanceVNormal undocumented
+ ImportanceVNormal Importance = 1
+ // ImportanceVHigh undocumented
+ ImportanceVHigh Importance = 2
+)
+
+// ImportancePLow returns a pointer to ImportanceVLow
+func ImportancePLow() *Importance {
+ v := ImportanceVLow
+ return &v
+}
+
+// ImportancePNormal returns a pointer to ImportanceVNormal
+func ImportancePNormal() *Importance {
+ v := ImportanceVNormal
+ return &v
+}
+
+// ImportancePHigh returns a pointer to ImportanceVHigh
+func ImportancePHigh() *Importance {
+ v := ImportanceVHigh
+ return &v
+}