mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-13 05:40:26 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
26 lines
800 B
Go
26 lines
800 B
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// EncryptionReadinessState undocumented
|
|
type EncryptionReadinessState int
|
|
|
|
const (
|
|
// EncryptionReadinessStateVNotReady undocumented
|
|
EncryptionReadinessStateVNotReady EncryptionReadinessState = 0
|
|
// EncryptionReadinessStateVReady undocumented
|
|
EncryptionReadinessStateVReady EncryptionReadinessState = 1
|
|
)
|
|
|
|
// EncryptionReadinessStatePNotReady returns a pointer to EncryptionReadinessStateVNotReady
|
|
func EncryptionReadinessStatePNotReady() *EncryptionReadinessState {
|
|
v := EncryptionReadinessStateVNotReady
|
|
return &v
|
|
}
|
|
|
|
// EncryptionReadinessStatePReady returns a pointer to EncryptionReadinessStateVReady
|
|
func EncryptionReadinessStatePReady() *EncryptionReadinessState {
|
|
v := EncryptionReadinessStateVReady
|
|
return &v
|
|
}
|