cartID = $cartId; return $this; } /** * @return mixed */ public function getCartId() { return $this->cartID; } /** * @param mixed $customerId * @return $this */ public function setCustomerId($customerId) { $this->customerID = $customerId; return $this; } /** * @return mixed */ public function getCustomerId() { return $this->customerID; } /** * @param mixed $dateAuthorized * @return $this */ public function setDateAuthorized($dateAuthorized) { $this->dateAuthorized = $this->parseDate($dateAuthorized); return $this; } /** * @return mixed */ public function getDateAuthorized() { return $this->dateAuthorized; } /** * @param mixed $dateCaptured * @return $this */ public function setDateCaptured($dateCaptured) { $this->dateCaptured = $this->parseDate($dateCaptured); return $this; } /** * @return mixed */ public function getDateCaptured() { return $this->dateCaptured; } /** * @param mixed $orderId * @return $this */ public function setOrderId($orderId) { $this->orderID = $orderId; return $this; } /** * @return mixed */ public function getOrderId() { return $this->orderID; } }