setDeclineCode($declineCode); $instance->setStripeParam($stripeParam); return $instance; } /** * Gets the decline code. * * @return string|null */ public function getDeclineCode() { return $this->declineCode; } /** * Sets the decline code. * * @param string|null $declineCode */ public function setDeclineCode($declineCode) { $this->declineCode = $declineCode; } /** * Gets the parameter related to the error. * * @return string|null */ public function getStripeParam() { return $this->stripeParam; } /** * Sets the parameter related to the error. * * @param string|null $stripeParam */ public function setStripeParam($stripeParam) { $this->stripeParam = $stripeParam; } }