1 // Copyright 2015-present 650 Industries. All rights reserved. 2 package host.exp.exponent.notifications 3 4 class ReceivedNotificationEvent( 5 experienceScopeKey: String, 6 body: String?, 7 notificationId: Int, 8 isMultiple: Boolean, 9 isRemote: Boolean 10 ) : ExponentNotification(experienceScopeKey, body, notificationId, isMultiple, isRemote) 11