Files
go-proton-api/notification_types.go
2024-08-29 13:28:04 +02:00

17 lines
246 B
Go

package proton
type NotificationPayload struct {
Title string
Subtitle string
Body string
}
type NotificationEvent struct {
ID string
UID string
UserID string
Type string
Time int64
Payload NotificationPayload
}