webpush-client-go/webpush/types.go

12 lines
313 B
Go

package webpush
import "encoding/json"
// https://developer.mozilla.org/docs/Web/API/Notification
type WebPushPayload struct {
Title string `json:"title"`
Body string `json:"body"`
Icon string `json:"icon"` // icon url
Data json.RawMessage `json:"data"` // custom data field
}