diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/ThreatCategoryEnum.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/ThreatCategoryEnum.go | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ThreatCategoryEnum.go b/vendor/github.com/yaegashi/msgraph.go/beta/ThreatCategoryEnum.go deleted file mode 100644 index d3a2854f..00000000 --- a/vendor/github.com/yaegashi/msgraph.go/beta/ThreatCategoryEnum.go +++ /dev/null @@ -1,41 +0,0 @@ -// Code generated by msgraph-generate.go DO NOT EDIT. - -package msgraph - -// ThreatCategory undocumented -type ThreatCategory int - -const ( - // ThreatCategoryVSpam undocumented - ThreatCategoryVSpam ThreatCategory = 1 - // ThreatCategoryVPhishing undocumented - ThreatCategoryVPhishing ThreatCategory = 2 - // ThreatCategoryVMalware undocumented - ThreatCategoryVMalware ThreatCategory = 3 - // ThreatCategoryVUnknownFutureValue undocumented - ThreatCategoryVUnknownFutureValue ThreatCategory = 4 -) - -// ThreatCategoryPSpam returns a pointer to ThreatCategoryVSpam -func ThreatCategoryPSpam() *ThreatCategory { - v := ThreatCategoryVSpam - return &v -} - -// ThreatCategoryPPhishing returns a pointer to ThreatCategoryVPhishing -func ThreatCategoryPPhishing() *ThreatCategory { - v := ThreatCategoryVPhishing - return &v -} - -// ThreatCategoryPMalware returns a pointer to ThreatCategoryVMalware -func ThreatCategoryPMalware() *ThreatCategory { - v := ThreatCategoryVMalware - return &v -} - -// ThreatCategoryPUnknownFutureValue returns a pointer to ThreatCategoryVUnknownFutureValue -func ThreatCategoryPUnknownFutureValue() *ThreatCategory { - v := ThreatCategoryVUnknownFutureValue - return &v -} |