diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/EnumFeature.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/EnumFeature.go | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumFeature.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumFeature.go new file mode 100644 index 00000000..da708169 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumFeature.go @@ -0,0 +1,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 +) |