mirror of
https://github.com/ProtonMail/go-proton-api.git
synced 2025-12-23 15:47:52 -05:00
17 lines
246 B
Go
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
|
|
}
|