blob: da708169eaf93057030b80c4e4e0c8ae47015631 (
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-generate.go 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
)
|