package jpush type notificationBody struct { } type cidList struct { CidList []string `json:"cidlist"` } type tags struct { Tags []string `json:"tags"` } type Error struct { Code int `json:"code"` Message string `json:"message"` } type PushResult struct { Sendno string `json:"sendno"` MsgId string `json:"msg_id"` Error Error `json:"error"` }