mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-30 09:41:35 +00:00
37 lines
1.0 KiB
Go
37 lines
1.0 KiB
Go
|
// Code generated by msgraph-generate.go DO NOT EDIT.
|
||
|
|
||
|
package msgraph
|
||
|
|
||
|
// ChatMessageImportance undocumented
|
||
|
type ChatMessageImportance string
|
||
|
|
||
|
/*
|
||
|
|
||
|
const (
|
||
|
// ChatMessageImportanceVNormal undocumented
|
||
|
ChatMessageImportanceVNormal ChatMessageImportance = 0
|
||
|
// ChatMessageImportanceVHigh undocumented
|
||
|
ChatMessageImportanceVHigh ChatMessageImportance = 1
|
||
|
// ChatMessageImportanceVUrgent undocumented
|
||
|
ChatMessageImportanceVUrgent ChatMessageImportance = 2
|
||
|
)
|
||
|
|
||
|
// ChatMessageImportancePNormal returns a pointer to ChatMessageImportanceVNormal
|
||
|
func ChatMessageImportancePNormal() *ChatMessageImportance {
|
||
|
v := ChatMessageImportanceVNormal
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// ChatMessageImportancePHigh returns a pointer to ChatMessageImportanceVHigh
|
||
|
func ChatMessageImportancePHigh() *ChatMessageImportance {
|
||
|
v := ChatMessageImportanceVHigh
|
||
|
return &v
|
||
|
}
|
||
|
|
||
|
// ChatMessageImportancePUrgent returns a pointer to ChatMessageImportanceVUrgent
|
||
|
func ChatMessageImportancePUrgent() *ChatMessageImportance {
|
||
|
v := ChatMessageImportanceVUrgent
|
||
|
return &v
|
||
|
}
|
||
|
*/
|