mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
26 lines
686 B
Go
26 lines
686 B
Go
|
// 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
|
||
|
}
|