mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 11:00:27 +00:00
31 lines
750 B
Go
31 lines
750 B
Go
|
// Code generated by msgraph-generate.go 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
|
||
|
)
|