mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
12 lines
353 B
Go
12 lines
353 B
Go
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"`
|
|
}
|