mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 19:10:26 +00:00
31 lines
745 B
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
|
|
)
|