mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 23:58:04 -05:00
10 lines
226 B
Go
10 lines
226 B
Go
|
|
package jpush
|
||
|
|
|
||
|
|
// Message .
|
||
|
|
type Message struct {
|
||
|
|
Title string `json:"title"`
|
||
|
|
ContentType string `json:"content_type"`
|
||
|
|
MsgContent string `json:"msg_content"`
|
||
|
|
Extras interface{} `json:"extras"`
|
||
|
|
}
|