blob: 650a35a5be245d187244ccee9398cd7b6d866188 (
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
// OperationResult undocumented
type OperationResult int
const (
// OperationResultVSuccess undocumented
OperationResultVSuccess OperationResult = 0
// OperationResultVFailure undocumented
OperationResultVFailure OperationResult = 1
// OperationResultVTimeout undocumented
OperationResultVTimeout OperationResult = 2
// OperationResultVUnknownFutureValue undocumented
OperationResultVUnknownFutureValue OperationResult = 3
)
// OperationResultPSuccess returns a pointer to OperationResultVSuccess
func OperationResultPSuccess() *OperationResult {
v := OperationResultVSuccess
return &v
}
// OperationResultPFailure returns a pointer to OperationResultVFailure
func OperationResultPFailure() *OperationResult {
v := OperationResultVFailure
return &v
}
// OperationResultPTimeout returns a pointer to OperationResultVTimeout
func OperationResultPTimeout() *OperationResult {
v := OperationResultVTimeout
return &v
}
// OperationResultPUnknownFutureValue returns a pointer to OperationResultVUnknownFutureValue
func OperationResultPUnknownFutureValue() *OperationResult {
v := OperationResultVUnknownFutureValue
return &v
}
|