blob: 0640739ef465562778da9e35935354339b6ac938 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
}
|