blob: 11e17ca530825cd03e039e34112e7967c147eca2 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// RecipientScopeType undocumented
type RecipientScopeType string
const (
// RecipientScopeTypeVNone undocumented
RecipientScopeTypeVNone RecipientScopeType = "none"
// RecipientScopeTypeVInternal undocumented
RecipientScopeTypeVInternal RecipientScopeType = "internal"
// RecipientScopeTypeVExternal undocumented
RecipientScopeTypeVExternal RecipientScopeType = "external"
// RecipientScopeTypeVExternalPartner undocumented
RecipientScopeTypeVExternalPartner RecipientScopeType = "externalPartner"
// RecipientScopeTypeVExternalNonPartner undocumented
RecipientScopeTypeVExternalNonPartner RecipientScopeType = "externalNonPartner"
)
var (
// RecipientScopeTypePNone is a pointer to RecipientScopeTypeVNone
RecipientScopeTypePNone = &_RecipientScopeTypePNone
// RecipientScopeTypePInternal is a pointer to RecipientScopeTypeVInternal
RecipientScopeTypePInternal = &_RecipientScopeTypePInternal
// RecipientScopeTypePExternal is a pointer to RecipientScopeTypeVExternal
RecipientScopeTypePExternal = &_RecipientScopeTypePExternal
// RecipientScopeTypePExternalPartner is a pointer to RecipientScopeTypeVExternalPartner
RecipientScopeTypePExternalPartner = &_RecipientScopeTypePExternalPartner
// RecipientScopeTypePExternalNonPartner is a pointer to RecipientScopeTypeVExternalNonPartner
RecipientScopeTypePExternalNonPartner = &_RecipientScopeTypePExternalNonPartner
)
var (
_RecipientScopeTypePNone = RecipientScopeTypeVNone
_RecipientScopeTypePInternal = RecipientScopeTypeVInternal
_RecipientScopeTypePExternal = RecipientScopeTypeVExternal
_RecipientScopeTypePExternalPartner = RecipientScopeTypeVExternalPartner
_RecipientScopeTypePExternalNonPartner = RecipientScopeTypeVExternalNonPartner
)
|