mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-13 04:30:26 +00:00
58 lines
1.3 KiB
Go
58 lines
1.3 KiB
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// RunState undocumented
|
||
|
type RunState int
|
||
|
|
||
|
const (
|
||
|
// RunStateVUnknown undocumented
|
||
|
RunStateVUnknown RunState = 0
|
||
|
// RunStateVSuccess undocumented
|
||
|
RunStateVSuccess RunState = 1
|
||
|
// RunStateVFail undocumented
|
||
|
RunStateVFail RunState = 2
|
||
|
// RunStateVScriptError undocumented
|
||
|
RunStateVScriptError RunState = 3
|
||
|
// RunStateVPending undocumented
|
||
|
RunStateVPending RunState = 4
|
||
|
// RunStateVNotApplicable undocumented
|
||
|
RunStateVNotApplicable RunState = 5
|
||
|
)
|
||
|
|
||
|
// RunStatePUnknown returns a pointer to RunStateVUnknown
|
||
|
func RunStatePUnknown() *RunState {
|
||
|
v := RunStateVUnknown
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// RunStatePSuccess returns a pointer to RunStateVSuccess
|
||
|
func RunStatePSuccess() *RunState {
|
||
|
v := RunStateVSuccess
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// RunStatePFail returns a pointer to RunStateVFail
|
||
|
func RunStatePFail() *RunState {
|
||
|
v := RunStateVFail
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// RunStatePScriptError returns a pointer to RunStateVScriptError
|
||
|
func RunStatePScriptError() *RunState {
|
||
|
v := RunStateVScriptError
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// RunStatePPending returns a pointer to RunStateVPending
|
||
|
func RunStatePPending() *RunState {
|
||
|
v := RunStateVPending
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// RunStatePNotApplicable returns a pointer to RunStateVNotApplicable
|
||
|
func RunStatePNotApplicable() *RunState {
|
||
|
v := RunStateVNotApplicable
|
||
|
return &v
|
||
|
}
|