mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 14:30:26 +00:00
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
34 lines
718 B
Go
34 lines
718 B
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
// Importance undocumented
|
|
type Importance int
|
|
|
|
const (
|
|
// ImportanceVLow undocumented
|
|
ImportanceVLow Importance = 0
|
|
// ImportanceVNormal undocumented
|
|
ImportanceVNormal Importance = 1
|
|
// ImportanceVHigh undocumented
|
|
ImportanceVHigh Importance = 2
|
|
)
|
|
|
|
// ImportancePLow returns a pointer to ImportanceVLow
|
|
func ImportancePLow() *Importance {
|
|
v := ImportanceVLow
|
|
return &v
|
|
}
|
|
|
|
// ImportancePNormal returns a pointer to ImportanceVNormal
|
|
func ImportancePNormal() *Importance {
|
|
v := ImportanceVNormal
|
|
return &v
|
|
}
|
|
|
|
// ImportancePHigh returns a pointer to ImportanceVHigh
|
|
func ImportancePHigh() *Importance {
|
|
v := ImportanceVHigh
|
|
return &v
|
|
}
|