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.
11 lines
353 B
11 lines
353 B
package jpush |
|
|
|
// Payload . |
|
type Payload struct { |
|
CID string `json:"cid,omitempty"` |
|
Platform interface{} `json:"platform"` |
|
Audience interface{} `json:"audience"` |
|
Notification interface{} `json:"notification,omitempty"` |
|
Message interface{} `json:"message,omitempty"` |
|
Options *Option `json:"options,omitempty"` |
|
}
|
|
|