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.
24 lines
365 B
24 lines
365 B
4 months ago
|
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"`
|
||
|
}
|