summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/AgreementAcceptanceStateEnum.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/AgreementAcceptanceStateEnum.go')
-rw-r--r--vendor/github.com/yaegashi/msgraph.go/beta/AgreementAcceptanceStateEnum.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/AgreementAcceptanceStateEnum.go b/vendor/github.com/yaegashi/msgraph.go/beta/AgreementAcceptanceStateEnum.go
new file mode 100644
index 00000000..368c4cc8
--- /dev/null
+++ b/vendor/github.com/yaegashi/msgraph.go/beta/AgreementAcceptanceStateEnum.go
@@ -0,0 +1,25 @@
+// Code generated by msgraph-generate.go DO NOT EDIT.
+
+package msgraph
+
+// AgreementAcceptanceState undocumented
+type AgreementAcceptanceState int
+
+const (
+ // AgreementAcceptanceStateVAccepted undocumented
+ AgreementAcceptanceStateVAccepted AgreementAcceptanceState = 2
+ // AgreementAcceptanceStateVDeclined undocumented
+ AgreementAcceptanceStateVDeclined AgreementAcceptanceState = 3
+)
+
+// AgreementAcceptanceStatePAccepted returns a pointer to AgreementAcceptanceStateVAccepted
+func AgreementAcceptanceStatePAccepted() *AgreementAcceptanceState {
+ v := AgreementAcceptanceStateVAccepted
+ return &v
+}
+
+// AgreementAcceptanceStatePDeclined returns a pointer to AgreementAcceptanceStateVDeclined
+func AgreementAcceptanceStatePDeclined() *AgreementAcceptanceState {
+ v := AgreementAcceptanceStateVDeclined
+ return &v
+}