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.
23 lines
365 B
23 lines
365 B
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"`
|
|
}
|
|
|