* <charge-amount-notification> - ChargeAmountNotificationEvent
* <chargeback-amount-notification> - ChargebackAmountNotificationEvent
* <refund-amount-notification> - RefundAmountNotificationEvent
*/
if (mappedObject instanceof ChargeAmountNotification) {
fireEvent(new ChargeNotificationEvent((ChargeAmountNotification)mappedObject));
} else if (mappedObject instanceof ChargebackAmountNotification) {
fireEvent(new ChargebackNotificationEvent((ChargebackAmountNotification)mappedObject));
} else if (mappedObject instanceof NewOrderNotification) {
fireEvent(new NewOrderNotificationEvent((NewOrderNotification)mappedObject));
} else if (mappedObject instanceof OrderStateChangeNotification) {