blob: 679fa9ffd2f27b9dac6da571713bb543b3fec5eb (
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
41
42
43
44
45
46
47
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// ScopeOperatorMultiValuedComparisonType undocumented
type ScopeOperatorMultiValuedComparisonType string
const (
// ScopeOperatorMultiValuedComparisonTypeVAll undocumented
ScopeOperatorMultiValuedComparisonTypeVAll ScopeOperatorMultiValuedComparisonType = "All"
// ScopeOperatorMultiValuedComparisonTypeVAny undocumented
ScopeOperatorMultiValuedComparisonTypeVAny ScopeOperatorMultiValuedComparisonType = "Any"
)
var (
// ScopeOperatorMultiValuedComparisonTypePAll is a pointer to ScopeOperatorMultiValuedComparisonTypeVAll
ScopeOperatorMultiValuedComparisonTypePAll = &_ScopeOperatorMultiValuedComparisonTypePAll
// ScopeOperatorMultiValuedComparisonTypePAny is a pointer to ScopeOperatorMultiValuedComparisonTypeVAny
ScopeOperatorMultiValuedComparisonTypePAny = &_ScopeOperatorMultiValuedComparisonTypePAny
)
var (
_ScopeOperatorMultiValuedComparisonTypePAll = ScopeOperatorMultiValuedComparisonTypeVAll
_ScopeOperatorMultiValuedComparisonTypePAny = ScopeOperatorMultiValuedComparisonTypeVAny
)
// ScopeOperatorType undocumented
type ScopeOperatorType string
const (
// ScopeOperatorTypeVBinary undocumented
ScopeOperatorTypeVBinary ScopeOperatorType = "Binary"
// ScopeOperatorTypeVUnary undocumented
ScopeOperatorTypeVUnary ScopeOperatorType = "Unary"
)
var (
// ScopeOperatorTypePBinary is a pointer to ScopeOperatorTypeVBinary
ScopeOperatorTypePBinary = &_ScopeOperatorTypePBinary
// ScopeOperatorTypePUnary is a pointer to ScopeOperatorTypeVUnary
ScopeOperatorTypePUnary = &_ScopeOperatorTypePUnary
)
var (
_ScopeOperatorTypePBinary = ScopeOperatorTypeVBinary
_ScopeOperatorTypePUnary = ScopeOperatorTypeVUnary
)
|