1 // Copyright 2018-present 650 Industries. All rights reserved. 2 3 #import <UserNotifications/UserNotifications.h> 4 5 NS_ASSUME_NONNULL_BEGIN 6 7 @interface EXNotificationSerializer : NSObject 8 9 + (NSDictionary *)serializedNotification:(UNNotification *)notification; 10 + (NSDictionary *)serializedNotificationRequest:(UNNotificationRequest *)notificationRequest; 11 + (NSDictionary *)serializedNotificationResponse:(UNNotificationResponse *)notificationResponse; 12 + (NSDictionary *)serializedNotificationContent:(UNNotificationRequest *)request; 13 14 @end 15 16 NS_ASSUME_NONNULL_END 17