5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 17:12:31 +00:00
matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/InstallIntentEnum.go

42 lines
1.2 KiB
Go

// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// InstallIntent undocumented
type InstallIntent int
const (
// InstallIntentVAvailable undocumented
InstallIntentVAvailable InstallIntent = 0
// InstallIntentVRequired undocumented
InstallIntentVRequired InstallIntent = 1
// InstallIntentVUninstall undocumented
InstallIntentVUninstall InstallIntent = 2
// InstallIntentVAvailableWithoutEnrollment undocumented
InstallIntentVAvailableWithoutEnrollment InstallIntent = 3
)
// InstallIntentPAvailable returns a pointer to InstallIntentVAvailable
func InstallIntentPAvailable() *InstallIntent {
v := InstallIntentVAvailable
return &v
}
// InstallIntentPRequired returns a pointer to InstallIntentVRequired
func InstallIntentPRequired() *InstallIntent {
v := InstallIntentVRequired
return &v
}
// InstallIntentPUninstall returns a pointer to InstallIntentVUninstall
func InstallIntentPUninstall() *InstallIntent {
v := InstallIntentVUninstall
return &v
}
// InstallIntentPAvailableWithoutEnrollment returns a pointer to InstallIntentVAvailableWithoutEnrollment
func InstallIntentPAvailableWithoutEnrollment() *InstallIntent {
v := InstallIntentVAvailableWithoutEnrollment
return &v
}