blob: 27063d48b3ec41d112f2e1d85c40147661a70b3b (
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
|
// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// FeatureType undocumented
type FeatureType string
const (
// FeatureTypeVRegistration undocumented
FeatureTypeVRegistration FeatureType = "registration"
// FeatureTypeVReset undocumented
FeatureTypeVReset FeatureType = "reset"
// FeatureTypeVUnknownFutureValue undocumented
FeatureTypeVUnknownFutureValue FeatureType = "unknownFutureValue"
)
var (
// FeatureTypePRegistration is a pointer to FeatureTypeVRegistration
FeatureTypePRegistration = &_FeatureTypePRegistration
// FeatureTypePReset is a pointer to FeatureTypeVReset
FeatureTypePReset = &_FeatureTypePReset
// FeatureTypePUnknownFutureValue is a pointer to FeatureTypeVUnknownFutureValue
FeatureTypePUnknownFutureValue = &_FeatureTypePUnknownFutureValue
)
var (
_FeatureTypePRegistration = FeatureTypeVRegistration
_FeatureTypePReset = FeatureTypeVReset
_FeatureTypePUnknownFutureValue = FeatureTypeVUnknownFutureValue
)
|