summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/msgraph.go/beta/EntryExportStatusEnum.go
blob: dc2e7fc4b7f7fa1020831c0edb6c3487e8a2ee62 (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
42
43
44
45
46
47
48
49
// Code generated by msgraph-generate.go DO NOT EDIT.

package msgraph

// EntryExportStatus undocumented
type EntryExportStatus int

const (
	// EntryExportStatusVNoop undocumented
	EntryExportStatusVNoop EntryExportStatus = 0
	// EntryExportStatusVSuccess undocumented
	EntryExportStatusVSuccess EntryExportStatus = 1
	// EntryExportStatusVRetryableError undocumented
	EntryExportStatusVRetryableError EntryExportStatus = 2
	// EntryExportStatusVPermanentError undocumented
	EntryExportStatusVPermanentError EntryExportStatus = 3
	// EntryExportStatusVError undocumented
	EntryExportStatusVError EntryExportStatus = 4
)

// EntryExportStatusPNoop returns a pointer to EntryExportStatusVNoop
func EntryExportStatusPNoop() *EntryExportStatus {
	v := EntryExportStatusVNoop
	return &v
}

// EntryExportStatusPSuccess returns a pointer to EntryExportStatusVSuccess
func EntryExportStatusPSuccess() *EntryExportStatus {
	v := EntryExportStatusVSuccess
	return &v
}

// EntryExportStatusPRetryableError returns a pointer to EntryExportStatusVRetryableError
func EntryExportStatusPRetryableError() *EntryExportStatus {
	v := EntryExportStatusVRetryableError
	return &v
}

// EntryExportStatusPPermanentError returns a pointer to EntryExportStatusVPermanentError
func EntryExportStatusPPermanentError() *EntryExportStatus {
	v := EntryExportStatusVPermanentError
	return &v
}

// EntryExportStatusPError returns a pointer to EntryExportStatusVError
func EntryExportStatusPError() *EntryExportStatus {
	v := EntryExportStatusVError
	return &v
}