clearing_time = $clearing_time; return $this; } /** * Expected clearing time * * @return string */ public function getClearingTime() { return $this->clearing_time; } /** * Hold-off duration of the payment * * @param string $payment_hold_date * * @return $this */ public function setPaymentHoldDate($payment_hold_date) { $this->payment_hold_date = $payment_hold_date; return $this; } /** * Hold-off duration of the payment * * @return string */ public function getPaymentHoldDate() { return $this->payment_hold_date; } }