mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
42 lines
1.2 KiB
Go
42 lines
1.2 KiB
Go
// 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
|
|
}
|