You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
matterbridge/vendor/github.com/yaegashi/msgraph.go/beta/EnumImportance.go

31 lines
745 B
Go

// Code generated by msgraph.go/gen DO NOT EDIT.
package msgraph
// Importance undocumented
type Importance string
const (
// ImportanceVLow undocumented
ImportanceVLow Importance = "low"
// ImportanceVNormal undocumented
ImportanceVNormal Importance = "normal"
// ImportanceVHigh undocumented
ImportanceVHigh Importance = "high"
)
var (
// ImportancePLow is a pointer to ImportanceVLow
ImportancePLow = &_ImportancePLow
// ImportancePNormal is a pointer to ImportanceVNormal
ImportancePNormal = &_ImportancePNormal
// ImportancePHigh is a pointer to ImportanceVHigh
ImportancePHigh = &_ImportancePHigh
)
var (
_ImportancePLow = ImportanceVLow
_ImportancePNormal = ImportanceVNormal
_ImportancePHigh = ImportanceVHigh
)