Example #1
0
 /**
  * Set specific payment properties
  *
  * @param Payment $payment
  * @return void
  */
 function initializePayment(Payment $payment)
 {
     $payment->setMerchantReference($this->merchantReference);
     $payment->setCurrencyCode($this->currencyCode);
     $payment->setPaymentAmount($this->paymentAmount);
     $payment->setSessionValidity($this->sessionValidity);
     $payment->setShipBeforeDate($this->shipBeforeDate);
 }