diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/EnumEncrypt.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/EnumEncrypt.go | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumEncrypt.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEncrypt.go new file mode 100644 index 00000000..40a48917 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumEncrypt.go @@ -0,0 +1,25 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +// EncryptWith undocumented +type EncryptWith string + +const ( + // EncryptWithVTemplate undocumented + EncryptWithVTemplate EncryptWith = "template" + // EncryptWithVUserDefinedRights undocumented + EncryptWithVUserDefinedRights EncryptWith = "userDefinedRights" +) + +var ( + // EncryptWithPTemplate is a pointer to EncryptWithVTemplate + EncryptWithPTemplate = &_EncryptWithPTemplate + // EncryptWithPUserDefinedRights is a pointer to EncryptWithVUserDefinedRights + EncryptWithPUserDefinedRights = &_EncryptWithPUserDefinedRights +) + +var ( + _EncryptWithPTemplate = EncryptWithVTemplate + _EncryptWithPUserDefinedRights = EncryptWithVUserDefinedRights +) |