_timestamp; } /** * Set the payment completion timestamp. * * @param string $timestamp Timestamp */ public function setTimestamp($timestamp) { $this->_timestamp = $timestamp; } /** * Get the payment plugin name. * * @return string */ public function getPayMethodPluginName() { return $this->_paymentPluginName; } /** * Set the payment plugin name. * * @param string $paymentPluginName */ public function setPayMethodPluginName($paymentPluginName) { $this->_paymentPluginName = $paymentPluginName; } } if (!PKP_STRICT_MODE) { class_alias('\PKP\payment\CompletedPayment', '\CompletedPayment'); }