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