amount; } /** * @return string */ public function getCurrency() { return $this->currency; } /** * @return array */ public function getPaymentMethods() { return $this->payment_methods; } /** * @return string */ public function getEmail() { return $this->email; } /** * @return mixed */ public function getPurpose() { return $this->purpose; } /** * @return string */ public function getName() { return $this->name; } /** * @return int */ public function getPhone() { return $this->phone; } /** * @return string */ public function getReferenceNumber() { return $this->reference_number; } /** * @return string */ public function getRedirectUrl() { return $this->redirect_url; } /** * @return string */ public function getWebhook() { return $this->webhook; } /** * @return bool */ public function isAllowRepeatedPayments() { return $this->allow_repeated_payments; } /** * @return null */ public function getExpiryDate() { return $this->expiry_date; } /** * @param float $amount * @return CreatePayment */ public function setAmount($amount) { $this->amount = $amount; return $this; } /** * @param string $currency * @return CreatePayment */ public function setCurrency($currency) { $this->currency = $currency; return $this; } /** * @param array $payment_methods * @return CreatePayment */ public function setPaymentMethods($payment_methods) { $this->payment_methods = $payment_methods; return $this; } /** * @param string $email * @return CreatePayment */ public function setEmail($email) { $this->email = $email; return $this; } /** * @param mixed $purpose * @return CreatePayment */ public function setPurpose($purpose) { $this->purpose = $purpose; return $this; } /** * @param string $name * @return CreatePayment */ public function setName($name) { $this->name = $name; return $this; } /** * @param int $phone * @return CreatePayment */ public function setPhone($phone) { $this->phone = $phone; return $this; } /** * @param string $reference_number * @return CreatePayment */ public function setReferenceNumber($reference_number) { $this->reference_number = $reference_number; return $this; } /** * @param string $redirect_url * @return CreatePayment */ public function setRedirectUrl($redirect_url) { $this->redirect_url = $redirect_url; return $this; } /** * @param string $webhook * @return CreatePayment */ public function setWebhook($webhook) { $this->webhook = $webhook; return $this; } /** * @param bool $allow_repeated_payments * @return CreatePayment */ public function setAllowRepeatedPayments($allow_repeated_payments) { $this->allow_repeated_payments = $allow_repeated_payments; return $this; } /** * @param null $expiry_date * @return CreatePayment */ public function setExpiryDate($expiry_date) { $this->expiry_date = $expiry_date; return $this; } /** * @return string */ public function getChannel() { return $this->channel; } /** * @param string $channel * @return CreatePayment */ public function setChannel($channel) { $this->channel = $channel; return $this; } }