123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- <?php
- namespace HitPay\Request;
- class RecurringBilling
- {
-
- public $plan_id;
-
-
- public $customer_email;
-
-
- public $customer_name;
-
-
- public $start_date;
-
-
- public $redirect_url;
-
-
- public $reference;
-
-
- public $amount;
-
-
- public $webhook;
-
- public $save_card;
-
- public $times_to_be_charge;
-
- public $send_email;
-
- public function setPlanId($plan_id)
- {
- $this->plan_id = $plan_id;
- return $this;
- }
-
- public function getPlanId()
- {
- return $this->plan_id;
- }
-
-
- public function setCustomerEmail($customer_email)
- {
- $this->customer_email = $customer_email;
- return $this;
- }
-
- public function getCustomerEmail()
- {
- return $this->customer_email;
- }
-
- public function setAmount($amount)
- {
- $this->amount = $amount;
- return $this;
- }
-
-
- public function getAmount()
- {
- return $this->amount;
- }
-
- public function setStartDate($start_date)
- {
- $this->start_date = $start_date;
- return $this;
- }
-
-
- public function getStartDate()
- {
- return $this->start_date;
- }
-
- public function setCustomerName($customer_name)
- {
- $this->customer_name = $customer_name;
- return $this;
- }
-
-
- public function getCustomerName()
- {
- return $this->customer_name;
- }
-
-
- public function setRedirectUrl($redirect_url)
- {
- $this->redirect_url = $redirect_url;
- return $this;
- }
-
-
- public function getRedirectUrl()
- {
- return $this->redirect_url;
- }
-
-
- public function setWebhook($webhook)
- {
- $this->webhook = $webhook;
- return $this;
- }
-
-
- public function getWebhook()
- {
- return $this->webhook;
- }
-
-
- public function setSaveCard($save_card)
- {
- $this->save_card = $save_card;
- return $this;
- }
-
-
- public function getSaveCard()
- {
- return $this->save_card;
- }
-
-
- public function setTimesToBeCharge($times_to_be_charge)
- {
- $this->times_to_be_charge = $times_to_be_charge;
- return $this;
- }
-
-
- public function getTimesToBeCharge()
- {
- return $this->times_to_be_charge;
- }
-
- public function setSendEmail($send_email)
- {
- $this->send_email = $send_email;
- return $this;
- }
-
-
- public function getSendEmail()
- {
- return $this->send_email;
- }
-
- public function setReference($reference)
- {
- $this->reference = $reference;
- return $this;
- }
-
-
- public function getReference()
- {
- return $this->reference;
- }
- }
|