diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/EnumInference.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/EnumInference.go | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/EnumInference.go b/vendor/github.com/yaegashi/msgraph.go/beta/EnumInference.go new file mode 100644 index 00000000..d3be8718 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/EnumInference.go @@ -0,0 +1,25 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +// InferenceClassificationType undocumented +type InferenceClassificationType string + +const ( + // InferenceClassificationTypeVFocused undocumented + InferenceClassificationTypeVFocused InferenceClassificationType = "focused" + // InferenceClassificationTypeVOther undocumented + InferenceClassificationTypeVOther InferenceClassificationType = "other" +) + +var ( + // InferenceClassificationTypePFocused is a pointer to InferenceClassificationTypeVFocused + InferenceClassificationTypePFocused = &_InferenceClassificationTypePFocused + // InferenceClassificationTypePOther is a pointer to InferenceClassificationTypeVOther + InferenceClassificationTypePOther = &_InferenceClassificationTypePOther +) + +var ( + _InferenceClassificationTypePFocused = InferenceClassificationTypeVFocused + _InferenceClassificationTypePOther = InferenceClassificationTypeVOther +) |