diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/EncryptionStateEnum.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/EncryptionStateEnum.go | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EncryptionStateEnum.go b/vendor/github.com/yaegashi/msgraph.go/beta/EncryptionStateEnum.go new file mode 100644 index 00000000..65d52cea --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EncryptionStateEnum.go @@ -0,0 +1,25 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +// EncryptionState undocumented +type EncryptionState int + +const ( + // EncryptionStateVNotEncrypted undocumented + EncryptionStateVNotEncrypted EncryptionState = 0 + // EncryptionStateVEncrypted undocumented + EncryptionStateVEncrypted EncryptionState = 1 +) + +// EncryptionStatePNotEncrypted returns a pointer to EncryptionStateVNotEncrypted +func EncryptionStatePNotEncrypted() *EncryptionState { + v := EncryptionStateVNotEncrypted + return &v +} + +// EncryptionStatePEncrypted returns a pointer to EncryptionStateVEncrypted +func EncryptionStatePEncrypted() *EncryptionState { + v := EncryptionStateVEncrypted + return &v +} |