PayWithAmazon\IpnHandler::getRemainingIpnFields PHP Method

getRemainingIpnFields() private method

* getRemainingIpnFields() Gets the remaining fields of the IPN to be later appended to the return message
private getRemainingIpnFields ( )
    private function getRemainingIpnFields()
    {
        $ipnMessage = $this->returnMessage();
        $remainingFields = array('NotificationReferenceId' => $ipnMessage['NotificationReferenceId'], 'NotificationType' => $ipnMessage['NotificationType'], 'SellerId' => $ipnMessage['SellerId'], 'ReleaseEnvironment' => $ipnMessage['ReleaseEnvironment']);
        return $remainingFields;
    }