You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
627 B
28 lines
627 B
1 year ago
|
package body
|
||
1 year ago
|
|
||
|
type Message struct {
|
||
|
MsgContent string `json:"msg_content"`
|
||
|
Title string `json:"title,omitempty"`
|
||
|
ContentType string `json:"content_type,omitempty"`
|
||
|
Extras map[string]interface{} `json:"extras,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (m *Message) SetMsgContent(c string) {
|
||
|
m.MsgContent = c
|
||
|
}
|
||
|
|
||
|
func (m *Message) SetTitle(t string) {
|
||
|
m.Title = t
|
||
|
}
|
||
|
|
||
|
func (m *Message) SetContentType(c string) {
|
||
|
m.ContentType = c
|
||
|
}
|
||
|
|
||
|
func (m *Message) SetExtras(key string, value interface{}) {
|
||
|
if m.Extras == nil {
|
||
|
m.Extras = make(map[string]interface{})
|
||
|
}
|
||
|
m.Extras[key] = value
|
||
|
}
|