mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-11-04 19:32:17 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			634 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			634 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package requestBody
 | 
						|
 | 
						|
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
 | 
						|
}
 |