summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/ThreatCategoryEnum.go
blob: d3a2854f0460b1a776fc479965aec3ed1e768bbe (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
31
32
33
34
35
36
37
38
39
40
41
// 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
}