From f444a87113e4abe6a30c5c2706762ea1adab2ebf Mon Sep 17 00:00:00 2001 From: ElectroNafta Date: Thu, 11 Jul 2024 14:55:53 +0200 Subject: [PATCH] feat(BRIDGE-37): notification API response changed --- notification_types.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/notification_types.go b/notification_types.go index fce3c69..8367e36 100644 --- a/notification_types.go +++ b/notification_types.go @@ -4,14 +4,14 @@ type NotificationPayload struct { Title string Subtitle string Body string - Priority string } type NotificationEvent struct { - ID string - UID string - UserID string - Type string - Time int64 - Payload NotificationPayload + ID string + UID string + UserID string + Type string + Priority string + Time int64 + Payload NotificationPayload }