mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-25 20:22:03 -08:00
34 lines
926 B
Go
34 lines
926 B
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// ApplicationMode undocumented
|
||
|
type ApplicationMode int
|
||
|
|
||
|
const (
|
||
|
// ApplicationModeVManual undocumented
|
||
|
ApplicationModeVManual ApplicationMode = 0
|
||
|
// ApplicationModeVAutomatic undocumented
|
||
|
ApplicationModeVAutomatic ApplicationMode = 1
|
||
|
// ApplicationModeVRecommended undocumented
|
||
|
ApplicationModeVRecommended ApplicationMode = 2
|
||
|
)
|
||
|
|
||
|
// ApplicationModePManual returns a pointer to ApplicationModeVManual
|
||
|
func ApplicationModePManual() *ApplicationMode {
|
||
|
v := ApplicationModeVManual
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// ApplicationModePAutomatic returns a pointer to ApplicationModeVAutomatic
|
||
|
func ApplicationModePAutomatic() *ApplicationMode {
|
||
|
v := ApplicationModeVAutomatic
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// ApplicationModePRecommended returns a pointer to ApplicationModeVRecommended
|
||
|
func ApplicationModePRecommended() *ApplicationMode {
|
||
|
v := ApplicationModeVRecommended
|
||
|
return &v
|
||
|
}
|